vb登录程序,大家帮忙看看啊
Option ExplicitDim cnt As Integer '记录确定次数
Private Sub Command1_Click()
Dim sql As String
Dim rs_login As New ADODB.Recordset
If Trim(txtuser.Text) = "" Then '判断输入的用户名是否为空
MsgBox "没有这个用户", vbOKOnly + vbExclamation, ""
txtuser.SetFocus
Else
sql = "select * from 密码表 where 用户名='" & txtuser.Text & "'"
rs_login.Open sql, conn, adOpenKeyset, adLockPessimistic
If rs_login.EOF = True Then
MsgBox "没有这个用户", vbOKOnly + vbExclamation, ""
txtuser.SetFocus
Else '检验密码是否正确
If Trim(rs_login.Fields(1)) = Trim(txtpwd.Text) Then
userID = txtuser.Text
userpow = rs_login.Fields(2)
rs_login.Close
Unload Me
MDIForm1.Show
Else
MsgBox "密码不正确", vbOKOnly + vbExclamation, ""
txtpwd.SetFocus
End If
End If
End If
cnt = cnt + 1
If cnt = 3 Then
Unload Me
End If
Exit Sub
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Private Sub Form_Load()
Dim connectionstring As String
conn = "provider=Microsoft.Jet.oledb.4.0;" & _
"data source=book.mdb"
connectionstring.Open connectionstring
cnt = 0
End Sub
打算完成的功能:
1.和access数据库里的密码表里的用户以及密码进行对比,如果成功,就出现窗体MDIForm1。
2.三次错误就自动关闭登录窗体。
大侠们看看,错误出在哪儿了,帮帮忙,十分感谢!!
[ 本帖最后由 不坐火车 于 2010-3-13 14:40 编辑 ]