我正在尝试在 VB.NET 2008 中使用 KeyPress 事件,但它不起作用。谁能帮我弄清楚这段代码有什么问题?此消息框不会出现,我的数据库中的我的状态也不会出现。程序说没问题,但它不工作。
If e.KeyChar = Chr(Keys.Enter) Then
tblLogin = Proses.ExecuteQuery("Select * From TblUser where kode_user = '" & KdUserTxt.Text & "'")
If tblLogin.Rows.Count = 0 Then
MessageBox.Show("Kode User Not Found!", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information)
KdUserTxt.Focus()
Else
StatusTxt.Text = tblLogin.Rows(0).Item("status")
PswTxt.Focus()
End If
End If