|
2#
楼主 |
发表于 2008-11-28 21:23:43
|
只看该作者
怎样将系统用户信息与注册界面联系起来
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
为什么在测试时,红色字体的地方老出错 |
|