0
嘿大家,我再次卡住,當窗體加載,我得到的錯誤:「連接錯誤:沒有位置0行」的幫助!?Vb和MySQL連接和代碼錯誤
Private Sub frmadduser_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim sqlDT As New DataTable
txtlname.Text = ""
txtfname.Text = ""
txtaddress.Text = ""
txtcontact.Text = ""
Try
If Me.Text = "Edit Account" Then
sqlSTR = "SELECT * FROM users WHERE idUsers =" & FrmSYSUSER.lstusers.FocusedItem.Text
ExecuteSQLQuery(sqlSTR)
MsgBox(sqlDT.Rows(0)("Username"))
With sqlDT
If .Rows.Count > 0 Then
txtlname.Text = .Rows(0)("lname")
txtfname.Text = .Rows(0)("fname")
txtaddress.Text = .Rows(0)("address")
txtcontact.Text = .Rows(0)("contact")
txtusername.Text = .Rows(0)("username")
txtpassword.Text = .Rows(0)("password")
txtconfirm.Text = .Rows(0)("password")
cmbaccnttype.Text = .Rows(0)("accesstype")
End If
End With
End If
Catch ex As Exception
MsgBox("Connection Error :" & ex.Message, MsgBoxStyle.Information, xTitlename)
End Try
End Sub