我的登录有问题...好吧,让我解释一下我的问题,问题是我想创建一个有限制的登录,我有一些文本框,绑定源属性更改为我的数据库。但是当我输入不在数据库中的东西时程序冻结了,我会发布我的代码,希望你能帮助我(=
Private Sub KryptonButton1_Click(ByVal sender As System.Object,
ByVal e As System.EventArgs)
Handles KryptonButton1.Click
If txtUser.Text <> UserTextBox.Text Then
While txtUser.Text <> UserTextBox.Text
Me.UsuarioContraseñaBindingSource.MoveNext()
End While
If txtUser.Text = UserTextBox.Text Then
KryptonMessageBox.Show("Welcome")
Else
KryptonMessageBox.Show("Error")
End If
End If
End Sub