如何为 64 位 office 重新编译 32 位 MS Access 文件
How to recompile 32-bit MS Access file for 64-bit office
我正在处理一个 Windows 10 迁移项目,我 运行 遇到的一个问题是一些最终用户有 32 位 .accde 文件,无法在64 位访问。目标版本是 click-to-运行 Office 365,当前版本是 Office 2010 运行ning on Windows 7.
根据this article,这些文件可以重新编译
... you can recompile 32-bit .mde, .ade, and .accde files to make them 64-bit compatible.
诀窍是,我不是 MS Access 专家,即使到目前为止,我在这个项目上的技术经验也非常薄弱。我不知道如何执行此重新编译。我在网上搜索了很多,但没有找到任何东西,所以我在这里求助于集体智囊团。
让我知道我可以提供哪些其他详细信息。
回顾https://www.devhut.net/2017/04/13/access-x32-vs-x64-compatibility/。
As a general rule, a database (in accdb file format) developed on
Access x32 should run fine on Access x64 and vice versa.
...
Compiled versions (accde file format) must be compiled on the same
version of the application they will be run on. So an:
x32 accde must be compiled and run on Access/Office x32
x64 accde must be compiled and run on Access/Office x64
重新编译需要使用原始 adp/mdb/accdb 文件来创建新的可执行文件。使用原始数据库:文件 > 保存并发布 > 制作 ACCDE
可能需要先更改一些代码。继续链接文章:
You will need to review all of you API calls providing conditional compilation directives containing modified API declaration that are compatible with both x32 and x64.
我正在处理一个 Windows 10 迁移项目,我 运行 遇到的一个问题是一些最终用户有 32 位 .accde 文件,无法在64 位访问。目标版本是 click-to-运行 Office 365,当前版本是 Office 2010 运行ning on Windows 7.
根据this article,这些文件可以重新编译
... you can recompile 32-bit .mde, .ade, and .accde files to make them 64-bit compatible.
诀窍是,我不是 MS Access 专家,即使到目前为止,我在这个项目上的技术经验也非常薄弱。我不知道如何执行此重新编译。我在网上搜索了很多,但没有找到任何东西,所以我在这里求助于集体智囊团。
让我知道我可以提供哪些其他详细信息。
回顾https://www.devhut.net/2017/04/13/access-x32-vs-x64-compatibility/。
As a general rule, a database (in accdb file format) developed on Access x32 should run fine on Access x64 and vice versa.
...
Compiled versions (accde file format) must be compiled on the same version of the application they will be run on. So an:
x32 accde must be compiled and run on Access/Office x32
x64 accde must be compiled and run on Access/Office x64
重新编译需要使用原始 adp/mdb/accdb 文件来创建新的可执行文件。使用原始数据库:文件 > 保存并发布 > 制作 ACCDE
可能需要先更改一些代码。继续链接文章:
You will need to review all of you API calls providing conditional compilation directives containing modified API declaration that are compatible with both x32 and x64.