|
3#
楼主 |
发表于 2008-11-28 21:59:16
|
只看该作者
怎样将用户信息与注册系统登录系统联系起来
怎样将用户信息与注册系统登录系统联系起来
Private Sub Command14_Click()
If Trim(Me![Text20]) = "" Or Trim(Me![Text22]) = "" Then
MsgBox "您输入的用户名和密码不能为空,请重新输入!", vbOKOnly, " 警告信息"
Else
With CodeContextObject
rrr ="[用户信息表]![姓名]="& Trim( Me! [text20]) &"'-
[用户信息表]![密码] = "& Trim( Me! [text22]) &" '"
DoCmd.ApplyFilter "uuu", rrr
If (.RecordsetClone.RecordCount > 0) Then
DoCmd.Close
DoCmd.OpenForm "系统界面", acNormal, "", "", acReadOnly, acWindowNormal
Else
MsgBox " 您输入的用户名称和密码不能为空,请重新输入。", vbOKOnly, "警告信息"
End If
End With
End If
End Sub
为什么老是出错 |
|