답변:
이 기술 기사 에는 로컬 디스크에서 파일을 시작하는 코드가 있습니다.
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에 대해서는 언급하지 않지만 여전히 작동합니다.