是否可以将 word 集成到 access 2007

是否可以将 word 集成到 access 2007

我想知道是否可以将 word 2007 集成到 access 2007 中。我从 Microsoft 网站下载了此模板“客户服务支持”,此数据库的一个表代表“知识库”,现在我正在考虑在 Access 中编写主题,解决方案我将提供一个链接,此链接应打开保存在我们服务器中的 word 文件。
您认为这可能吗?

感谢您的帮助

答案1

由此网上技术文章有一些代码可以从本地磁盘启动一个文件:

Private Sub Command1_Click()

    Dim LWordDoc As String
    Dim oApp As Object

    'Path to the word document
    LWordDoc = "c:\Doc1.doc"

    If Dir(LWordDoc) = "" Then
        MsgBox "Document not found."

    Else
        'Create an instance of MS Word
        Set oApp = CreateObject(Class:="Word.Application")
        oApp.Visible = True

        'Open the Document
        oApp.Documents.Open filename:=LWordDoc
    End If

End Sub

如果将“c:\Doc1.doc”替换为“\server\folder\doc1.doc”,则此方法应该有效

尽管文章中没有提到 Access/Word 的较新版本,但它仍然有效。

相关内容