北京 | 上海 | 天津 | 重庆 | 广州 | 深圳 | 珠海 | 汕头 | 佛山 | 中山 | 东莞 | 南京 | 苏州 | 无锡 | 常州 | 南通 | 扬州 | 徐州 | 杭州 | 温州 | 宁波 | 台州 | 福州 | 厦门 | 泉州 | 龙岩 | 合肥 | 芜湖 | 成都 | 遂宁 | 长沙 | 株洲 | 湘潭 | 武汉 | 南昌 | 济南 | 青岛 | 烟台 | 潍坊 | 淄博 | 济宁 | 太原 | 郑州 | 石家庄 | 保定 | 唐山 | 西安 | 大连 | 沈阳 | 长春 | 昆明 | 兰州 | 哈尔滨 | 佳木斯 | 南宁 | 桂林 | 海口 | 贵阳 | 西宁 | 乌鲁木齐 | 包头 |
Private Sub Command6_Click()
Dim strpassword, strusername As String
Dim flag As Integer
Dim record As ADODB.Recordset
flag = 0
openrecord "select * from 管理员资料", record // 调试到这条出错,,请高手指教一下!!!
Do Until record.EOF 提示:子过程或函数未定义
strusername = record("用户名")
strpassword = record("密码")
If UCase(Me.Text2.Value) <> UCase(strusername) Then
record.MoveNext
Else
flag = 1
Exit Do
End If
Loop
If flag = 0 Then
Me.Text2.Value = ""
Me.Text4.Value = ""
Me.Text2.SetFocus
Command6.Enabled = False
Exit Sub
Else
If UCase(Me.Text4.Value) <> UCase(strpassword) Then
MsgBox ("密码错误,请重新输入")
Me.Text4.Value = ""
Me.Text4.SetFocus
Command6.Enabled = False
Exit Sub
End If
End If
DoCmd.Close
DoCmd.OpenForm "系统界面"
End Sub