| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 703 人关注过本帖
标题:求助关于数据库的问题
取消只看楼主 加入收藏
bigzerg
Rank: 1
等 级:新手上路
帖 子:39
专家分:0
注 册:2008-5-19
收藏
 问题点数:0 回复次数:2 
求助关于数据库的问题
请教一下,代码错在什么地方。运行之后的提示错误是  “未找到方法或数据成员”
'str定义在通用里
Private Sub Command2_Click()
Dim a, i As Integer
str = Combo1.Text
For i = 0 To 3
If Option1(i).Value = True Then
 a = i
 End If
Next i
Select Case a
Case 0
 DataGrid1.DataSource = Adodc1(1)
 DataGrid1.Refresh
Case 1
 DataGrid1.DataSource = Adodc1(2)
 DataGrid1.Refresh
Case 2
 DataGrid1.DataSource = Adodc1(3)
 DataGrid1.Refresh
Case 3
 DataGrid1.DataSource = Adodc1(4)
 DataGrid1.Refresh
End Select
End Sub

Private Sub Form_Load()
'Adodc1(0)的RecordSource属性先定义了
Adodc1(1).RecordSource = "select * from 加班 where 职工号='&str&'"
Adodc1(2).RecordSource = "select * from 请假 where 职工号='&str&'"
Adodc1(3).RecordSource = "select * from 考勤统计 where 职工号='&str&'"
Adodc1(4).RecordSource = "select * from 出差 where 职工号='&str&'"
End Sub
搜索更多相关主题的帖子: 数据库 
2008-07-17 23:13
bigzerg
Rank: 1
等 级:新手上路
帖 子:39
专家分:0
注 册:2008-5-19
收藏
得分:0 
赋值了,在属性里赋值的
2008-07-18 11:48
bigzerg
Rank: 1
等 级:新手上路
帖 子:39
专家分:0
注 册:2008-5-19
收藏
得分:0 
现在稍微改了一下,运行没有错误了,但是。。。问题又出来了,选择查询过后能显示表头,但显示不出选择的职工号的信息,我郁闷,不太懂这个东西,找不到问题所在,请高手指点一下,急用,谢谢啦!
Dim str As String
Dim rs As ADODB.Recordset
Dim conn As ADODB.Connection



Private Sub Command1_Click()
考勤记录.Show
Unload 按职工号查询
End Sub

Private Sub Command2_Click()
Dim i As Integer
str = Combo1.Text
Adodc1(1).RecordSource = "select * from 加班 where 职工号='&str&'"
Adodc1(2).RecordSource = "select * from 请假 where 职工号='&str&'"
Adodc1(3).RecordSource = "select * from 考勤统计 where 职工号='&str&'"
Adodc1(4).RecordSource = "select * from 出差 where 职工号='&str&'"
If Option1(0).Value = False And Option1(1).Value = False And Option1(2).Value = False And Option1(3).Value = False Then
   MsgBox ("请先选择查询项目再查询!")
End If

For i = 0 To 3
If Option1(i).Value = True Then
  Set DataGrid1.DataSource = Adodc1(i + 1)
  DataGrid1.Refresh
End If
Next i
End Sub

Private Sub Form_Load()
Adodc1(0).Visible = False
Adodc1(1).Visible = False
Adodc1(2).Visible = False
Adodc1(3).Visible = False
Adodc1(4).Visible = False
Set conn = New ADODB.Connection
conn.Open "mydata"
Set rs = New ADODB.Recordset
rs.Open "select * from 职工", conn, adOpenDynamic, adLockOptimistic
rs.MoveFirst
  While Not rs.EOF
     Combo1.AddItem rs.Fields("职工号")
  rs.MoveNext
 Wend
 Set rs = Nothing
End Sub
2008-07-18 12:42
快速回复:求助关于数据库的问题
数据加载中...
 
   



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

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