一个登陆按钮
Private Sub Command31_Click()
Dim abc As Recordset
If Me.Command31 & "" = "" Then
MsgBox "ID is empty!"
Command31.SetFocus
Exit Sub
这个是我得 点登陆按钮的时候就弹出一个
运行时错误“438”
对象不支持该属性或方法
~问题是 我照另一个写的 也就是原版
Dim Rst As Recordset
If Me.txtUser & "" = "" Then
msgbox "请输入您的用户名!"
txtUser.SetFocus
Exit Sub
End If
他这个就可以运行~~请问下是为什么??