[求助]为什么ADO数据库程序在其它计算机上运行要出错?
我在本机上编写的数据库程序很正常。但到其它计算机上却不能正常运行,我到网上搜索了一下,也没找到解决办法,不知道问题出在哪里。我猜问题可能出在DataGrid的显示上,但“DataGrid1.DataSource = Adodc1”运行时要出错。下面是代码,希望大侠们给我指点一下迷津,谢谢了!
Option Explicit
Private Sub Command1_Click()
Dim connstr As String
CommonDialog1.Filter = "Metafile(*.mdb)|*.mdb"
CommonDialog1.ShowOpen
connstr = "Provider=Microsoft.Jet.OLEDB.3.51;Persist Security Info=False;Data Source=" & CommonDialog1.FileName
Adodc1.ConnectionString = connstr
Adodc1.CommandType = adCmdTable
Adodc1.RecordSource = "xsgl"
'DataGrid1.DataSource = Adodc1
'DataGrid1.Refresh
Adodc1.Refresh
End Sub