|
本帖最后由 shilixi 于 2009-6-20 11:40 编辑
Public Function login() As Boolean
Dim rs As New ADODB.Recordset
Dim strsql As String
strsql = "select * from 密码库 where '" & Me.cbouser & "'"
rs.Open strsql, CurrentProject.connextion
adOpenStatic , adLockReadOnly
If rs.RecordCount > 0 Then
if rs! 密码=me. txtpwd then
login = True
End If
End If
rs.Close
Set rs = Nothing
End Function
if rs! 密码=me. txtpwd then出错了 谢谢帮忙看看怎么改 |
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?注册
x
|