查看: 1540|回复: 5
|
VB 6.0 link Microsoft Access database
[复制链接]
|
|
我想link vb 去access to retrieve the data....
请问,能怎么样作呢? |
|
|
|
|
|
|
|
发表于 24-11-2004 06:51 PM
|
显示全部楼层
|
|
|
|
|
|
|
发表于 25-11-2004 12:47 AM
|
显示全部楼层
也可以drag 一个叫Data的 control 进你得form,然后再properties里选 DatabaseName,locate 你得access file,就可以了,不必用 coding 来 link, 既简单又容易。 |
|
|
|
|
|
|
|
楼主 |
发表于 25-11-2004 12:37 PM
|
显示全部楼层
哦,谢谢你们。
那么如果我用De的method,要怎样来retrive data to text box(example) |
|
|
|
|
|
|
|
发表于 25-11-2004 12:42 PM
|
显示全部楼层
樱木 于 25-11-2004 12:37 PM 说 :
哦,谢谢你们。
那么如果我用De的method,要怎样来retrive data to text box(example)
Don know is wat u want or not ??
example:
SQL = "select * from Emp where EmpNo = '123'"
Set rstA = New ADODB.Recordset
rstA.Open SQL, ConStr, adOpenDynamic, adLockOptimistic, adCmdText
If Not rstA.EOF Then
With rstA
txtName = !EmpName
End With
End If |
|
|
|
|
|
|
|
发表于 25-11-2004 12:47 PM
|
显示全部楼层
With Data1
.recordsource = 你得SQL query (example: SELECT a FRom Tbl)
.refresh
if .recordSet.RecordCount > 0 then '如果有data
txtBox.text = .recordSet!a
end if
end with |
|
|
|
|
|
|
| |
本周最热论坛帖子
|