VB6 - Foxpro 2.6 XP 上没有 isam 错误

发布于 2024-11-27 09:30:51 字数 422 浏览 4 评论 0原文

老板给了我一些相当古老的遗留代码,全部用 VB6 完成。安装 Visual Studio 6 和其他一些东西后,我终于能够打开该项目并实际编译/运行它。我的新问题来自这行代码:

Set db = DBEngine.Workspaces(0).OpenDatabase(ThePath$, False, ReadOnlyFlag, "FoxPro 2.6;")

我收到错误“找不到可安装的 ISAM”

我不确定我缺少什么。我做了一些搜索,在 system32 和注册表中找到了诸如 MSJET35.DLL 之类的东西。 Access 已安装(我在 Access 2002 和 2003 上都尝试过)。我预计这是 Windows 7 或 Vista 中的问题,但这是 XP Service Pack 3 中的问题

。有人有什么想法吗?

The boss handed me some rather ancient legacy code, all done in VB6. After installing Visual Studio 6 and a few other things, I'm finally able to open the project and actually compile/run it. My new problem comes from this line of code:

Set db = DBEngine.Workspaces(0).OpenDatabase(ThePath$, False, ReadOnlyFlag, "FoxPro 2.6;")

I get the error "Cannot find installable ISAM"

I'm not sure what I'm missing. I've done some searching and I have things like MSJET35.DLL in system32 and the registry. Access is installed (I tried it with both Access 2002 and 2003). I would expect this to be a problem with Windows 7 or Vista, but this is in XP, service pack 3.

Any thoughts anyone?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

帅冕 2024-12-04 09:30:51

FoxPro 驱动程序不包含在 MDAC 2.6 及更高版本中。下载 ODBC 或 OLEDB 的适当安装

FoxPro ODBC 驱动程序
FoxPro OLEDB 驱动程序

The FoxPro drivers are not included in MDAC 2.6 and beyond. Download the appropriate install for either ODBC or OLEDB

FoxPro ODBC drivers
FoxPro OLEDB drivers

何以畏孤独 2024-12-04 09:30:51

FoxPro 2.6 需要一个名为 msxbse35.dll 的 dll,

将其复制到您的 system32 目录中并运行 regsvr32 msxbse35.dll 进行注册。
然后您的程序将在那台计算机上正常运行。

FoxPro 2.6 requires a dll called msxbse35.dll

Copy it into your system32 directory and run regsvr32 msxbse35.dll to register.
Your program will then run fine on that computer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文