求求各位帮我看看(在线等)
Private Sub Cmdok_Click()Dim MESSAGE As String
If master.Text <> "" Then
Set mydb = Workspaces(0).OpenDatabase(App.Path & "\kfgl.mdb")
Set myrs = mydb.OpenRecordset("qxsz", dbOpenDynaset)
myrs.FindFirst "操作员 = " + Chr(34) + master.Text + Chr(34) + "" ' 查找操作员
If myrs.NoMatch Then '没查到记录
MsgBox ("无此操作员!")
Else
If password.Text = myrs.Fields("密码") Then '确认密码
MsgBox "系统登陆成功!" '系统登录成功
Else
If TIM = 3 Then
MESSAGE = MsgBox("密码输入错误,请向系统管理员查询!", 0, "")
If MESSAGE = vbOK Then End
End If
MsgBox ("密码错误,请重新输入密码!")
TIM = TIM + 1 '密码输入错误次数
password.SetFocus
End If
End If
End If
End Sub
请各位帮我看看
以上代码的数据库应该怎么建,字段名和表名各是什么,库应该建在哪个目录下
谢谢谢谢谢谢各位