- 积分
- 652
- 明经币
- 个
- 注册时间
- 2005-4-28
- 在线时间
- 小时
- 威望
-
- 金钱
- 个
- 贡献
-
- 激情
-
|
发表于 2005-5-20 17:26:00
|
显示全部楼层
不知道你说的用启动access 是什么意思,如果说是动态连接access 数据库的话,请尝试一下以下代码:
dim strPath As String Dim adoCon As Connection '连接对象
dim adors as recordset
'必须首先获得当前的工程路径 strPath = ThisDrawing.Application.VBE.ActiveVBProject.FileName '连接数据库 Set adoCon = New Connection adoCon.CursorLocation = adUseClient adoCon.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & _ Left(strPath, Len(strPath) - 8) & "road.mdb;" Set adors= New Recordset adors.Open "Preferences", adoCon, adOpenDynamic, adLockOptimistic |
|