✔ 最佳答案
首先,你要使用 VB 裡面的元件:
「Microsoft ADO Data Control 6.0 (OLEDB)」
然後把元件加入你的 form 入面。
再定義:Dim FTRrs As New ADODB.Recordset
開啟你的 Database file:
strConn = "Data Source= filename;Provider=Microsoft.Jet.OLEDB.4.0"
strSQL = "Select * From [" & strTableName & "]"
FTRrs.Open strSQL, strConn, adOpenStatic, adLockOptimistic
最後請參看以下這一個網頁:
http://www.w3schools.com/ado/ado_ref_recordset.asp
裡面有講解關於 ADO control 的所有 methods ,可能會包括 check data table 等等的功能。