1

我在 MS Access 中有一个子程序,可以打开一个特定的 word doc 文件。代码的要点是

Dim wrdApp As Word.Application
Dim wrdDoc As Word.Document
Dim filepath as String

'Open Word
Set wrdApp = CreateObject("Word.Application")
wrdApp.Visible = True

filepath = CurrentProject.Path & "\Prospect Profiles\Account Profile Form.doc"

'Open the file
Set wrdDoc = wrdApp.Documents.Open(filepath)

所以这是踢球者 - 该子程序适用于除我们的一名员工之外的所有员工。我们都在同一个 Citrix 环境中,并且我们都拥有相同版本的 Access 和 Word。对于这个用户,子程序不会给出错误——它只是打开了一个 ms word 的空白实例,但它从不打开 word doc 文件。是什么赋予了?

4

1 回答 1

1

啊哈!事实证明,这个用户复制了我们数据库前端的旧版本,他没有访问我们当前的更新版本。谢谢大家的帮助!

于 2013-03-27T19:22:08.277 回答