[求助]请问怎样引用combobox控件的值?
请教一下在combo控件中引用了数据表的一列记录做为控件的选项,当选择了某一项后,怎样才能做到对该表的后在记录的查询?我用了以下代码:Private Sub Form_Load()
Dim jl As Integer
Adodc2.ConnectionString = Provider = "Microsoft.Jet.OLEDB.4.0;Data Source=F:\指标.mdb;Persist Security Info=False"
Adodc2.RecordSource = "系数"
jl = Adodc2.Recordset.RecordCount '计算表中的记录数
For i = 0 To jl - 1
Combo1.AddItem Adodc2.Recordset.Fields("城市")
Adodc2.Recordset.MoveNext '下一条记录
Next
Adodc2.Recordset.MoveFirst
end sub
引用成功,但下步的对表查询不知在哪个过程中写怎样的代码?谢谢
我用代码
Adodc2.RecordSource = "select * from 系数 where 城市 LIKE '%" & Combo1.Text & "%'"
Adodc2.Refresh
提示找不到数据源