Datalist控件绑定ADO出现问题
发布网友
发布时间:2024-05-09 07:35
我来回答
共5个回答
热心网友
时间:2024-06-23 13:36
你是否对Adodc1的属性
ConnectionString
RecordSource
以及
DataList1的属性
RowSource
ListField
进行设置。
前者设置代码参考如下:
Private Sub Form_Load()
Adodc1.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=E:\db1.mdb;Persist Security Info=False"
Adodc1.RecordSource = "select name from b1 order by name"
Adodc1.Refresh
DataList1.Refresh
End Sub
热心网友
时间:2024-06-23 13:37
先坐坐
热心网友
时间:2024-06-23 13:32
等号左右的类型不一致,应该继续获得DataList1.SelectedItem中单元格的值而不是这个行对象
(vb坏了,无法调试)
热心网友
时间:2024-06-23 13:36
data source那里有没有设,或是否设定错?
检查不到记录集
热心网友
时间:2024-06-23 13:40
老大,DataList1.SelectedItem 返回的是什么类型的值?
Adodc1.Recordset.Bookmark 需要什么类型的值?
你这样调用当然会错