split(string, "") indiex outside

vick82

Newcomer
Joined
Nov 15, 2003
Messages
2
I m getting error of Index was outside the bounds of the array.
loook at the code in bold
Visual Basic:
[b]Dim arrBid = Split(objBid.getMaxBidInfo(auctionId), ";")
            bidderId = arrBid(0)
           bidPrice = CInt(arrBid(1))[/b]


Public Function getBasicInfo(ByVal uid As Integer) As String
        Dim myDataReader As SqlDataReader
        Dim s_b_Info As String
        Dim myConnection As SqlConnection = New SqlConnection(ConfigurationSettings.AppSettings("ConnectionString"))
        Dim myCommand As SqlCommand = New SqlCommand("Select uName,email from t_user where uId=" & uid & "", myConnection)
        myConnection.Open()

        Try
            myDataReader = myCommand.ExecuteReader()
            If myDataReader.Read() Then
[B]s_b_Info = myDataReader.Item("uName") & "," & myDataReader.Item("email")[/B]                     
        End If
        Catch b As Exception
            Return b.ToString
        End Try
 
Last edited by a moderator:
Back
Top