T
Todd
Ok, this code works fine on the Web server machine. But when I try to run it
via any other clients on the LAN, I keep getting scripting errors (the MS
Word Document never opens.) Do I have to configure the server somehow to
allow it to share this MS Word doc?
<SCRIPT LANGUAGE=VBScript>
Dim objWord
Sub Btn1_onclick()
call
OpenDoc("http://WEBSERVER/ClerkOfCourt/CourtLetters/TestTemplate.doc")
End Sub
Sub OpenDoc(strLocation)
Set objWord = CreateObject("Word.Application")
objWord.Visible = true
objWord.Documents.Open strLocation
End Sub
</SCRIPT>
via any other clients on the LAN, I keep getting scripting errors (the MS
Word Document never opens.) Do I have to configure the server somehow to
allow it to share this MS Word doc?
<SCRIPT LANGUAGE=VBScript>
Dim objWord
Sub Btn1_onclick()
call
OpenDoc("http://WEBSERVER/ClerkOfCourt/CourtLetters/TestTemplate.doc")
End Sub
Sub OpenDoc(strLocation)
Set objWord = CreateObject("Word.Application")
objWord.Visible = true
objWord.Documents.Open strLocation
End Sub
</SCRIPT>