Access交流中心

北京 | 上海 | 天津 | 重庆 | 广州 | 深圳 | 珠海 | 汕头 | 佛山 | 中山 | 东莞 | 南京 | 苏州 | 无锡 | 常州 | 南通 | 扬州 | 徐州 | 杭州 | 温州 | 宁波 | 台州 | 福州 | 厦门 | 泉州 | 龙岩 | 合肥 | 芜湖 | 成都 | 遂宁 | 长沙 | 株洲 | 湘潭 | 武汉 | 南昌 | 济南 | 青岛 | 烟台 | 潍坊 | 淄博 | 济宁 | 太原 | 郑州 | 石家庄 | 保定 | 唐山 | 西安 | 大连 | 沈阳 | 长春 | 昆明 | 兰州 | 哈尔滨 | 佳木斯 | 南宁 | 桂林 | 海口 | 贵阳 | 西宁 | 乌鲁木齐 | 包头 |

代码出错请高手指教!!!

在吹的风  发表于:2008-04-29 00:15:59  
复制

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

 

Top
钱玉炜 发表于:2008-04-29 07:55:34

openrecord "select * from 管理员资料", record  没有这种写法

定义个连接

dim conn as new adodb.connection

record.open "select * from 管理员资料",conn,adOpenKeyset, adLockOptimistic

可以试下上面的



在吹的风 发表于:2008-04-29 10:33:32

谢谢版主指点!!

 

我把以上代码改成版主所写的代码,调试时提示:

                                          运行时错误‘91’:

                                          对象变量或 With 块变量未设置

 

指标指向:record.open "select * from 管理员资料", conn, adOpenKeyset, adLockOptimistic

 


Private Sub Command6_Click()

Dim strpassword, strusername As String

Dim flag As Integer

Dim record As ADODB.Recordset

Dim conn As New ADODB.Connection

flag = 0

record.open "select * from 管理员资料", conn, adOpenKeyset, adLockOptimistic

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



钱玉炜 发表于:2008-04-29 16:44:40

加一句

conn=currentproject.connection



在吹的风 发表于:2008-04-29 17:34:52
还是老样子

在吹的风 发表于:2008-04-29 17:35:41
希望版主能提供一个进行与数据库验证的代码!!!谢谢!!

总记录:5篇  页次:1/1 9 1 :