| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 559 人关注过本帖
标题:[求助]如何解决编译错误:未找到方法或数据成员
只看楼主 加入收藏
忘不了
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2007-6-14
收藏
 问题点数:0 回复次数:0 
[求助]如何解决编译错误:未找到方法或数据成员

本系统是VB+Access做的,是图书管理系统,编译下面一段的时候老是编译错误,
提示“未找到方法或数据成员”,以下是代码:

Private Sub txtReaderID_KeyPress(KeyAscii As Integer)
'判断用户按下回车键并且是否输入读者编号
If KeyAscii = "13" And txtReaderID.Text <> "" Then

'根据输入的读者编号,查找读者姓名
g_strSql = "select * from readerInfo where 读者编号='" & txtReaderID.Text & "'"
Set g_rs = g_db.OpenRecordset(g_strSql) '进行数据库的查询

'判断是否找到
If Not g_rs.EOF Then
txtReaderName.Text = g_rs!读者姓名
txtReaderda.Text = g_rs!办证日期
txtReadertel.Text = g_rs!联系电话
txtReaderadd.Text = g_rs!家庭地址
InitDataGrid (False) '初始化DataGrid控件信息
Else
MsgBox "没有该读者信息!", vbOKOnly, "提示"
txtReaderName.Text = ""
End If

Set g_rs = Nothing
ElseIf KeyAscii = "13" And txtReaderID.Text = "" Then
MsgBox "请先输入读者编号", vbOKOnly, "提示"
End If

End Sub


但是以下代码却能通过
Private Sub txtBookID_KeyPress(KeyAscii As Integer)

'判断用户按下回车键并且是否输入读者编号和书籍编号
If KeyAscii = "13" And txtReaderID.Text <> "" And txtBookID.Text <> "" Then

g_strSql = "select bookInfo.书籍名称,bookInfo.书籍价格,bookInfo.出版社,bookInfo.书籍页码," _
& "bookInfo.是否借出,bookType.书籍类别 from bookInfo,bookType where 书籍编号='" & txtBookID.Text & "'" _
& " and bookInfo.类别代码=bookType.类别代码"
Set g_rs = g_db.OpenRecordset(g_strSql)

If Not g_rs.EOF Then
txtBookName.Text = g_rs!书籍名称
txtBookPrice.Text = g_rs!书籍价格
txtBookLeibie.Text = g_rs!书籍类别
txtBookConcern.Text = g_rs!出版社
txtBookPage.Text = g_rs!书籍页码

If g_rs!是否借出 = True Then
MsgBox "该书已经借出,请选择其它图书!", vbOKOnly, "提示"
cmdLendBook.Enabled = False
Else
cmdLendBook.Enabled = True
End If
Else
MsgBox "没有该书信息!", vbOKOnly, "提示"
txtBookName.Text = ""
txtBookPrice.Text = ""
txtBookLeibie.Text = ""
txtBookConcern.Text = ""
txtBookPage.Text = ""
End If
Set g_rs = Nothing

ElseIf KeyAscii = "13" And txtReaderID.Text = "" Then
MsgBox "请先输入读者编号", vbOKOnly, "提示"
ElseIf KeyAscii = "13" And txtReaderID.Text <> "" And txtBookID.Text = "" Then
MsgBox "请先输入书籍编号", vbOKOnly, "提示"
End If

End Sub


大家请给我指点,谢谢

搜索更多相关主题的帖子: 成员 数据 编译 
2007-06-14 11:54
快速回复:[求助]如何解决编译错误:未找到方法或数据成员
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.017057 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved