Does anyone have any suggestions on the following problem:
Coding for my company's intranet which is serving Word forms for our users to fill in. Within each form is a macro set up to fire when the document opens (using Public Sub AutoOpen(), which calls appropriate procedures for input boxes, etc.)
The code runs great when I open any of the documents locally (whether it's double clicing the file from Win Explorer, or doing a File, Open in Word).
Problem arises when I post the file to the server, and use the <a href....>
eg. <a href="path\filename.doc">LINK</a>
When the user clicks the link, Word opens, but the macro no longer fires. I've also attempted coding using the VB Document_Open(), but this doesn't work at all whether locally or linked.
Any suggestions?
Coding for my company's intranet which is serving Word forms for our users to fill in. Within each form is a macro set up to fire when the document opens (using Public Sub AutoOpen(), which calls appropriate procedures for input boxes, etc.)
The code runs great when I open any of the documents locally (whether it's double clicing the file from Win Explorer, or doing a File, Open in Word).
Problem arises when I post the file to the server, and use the <a href....>
eg. <a href="path\filename.doc">LINK</a>
When the user clicks the link, Word opens, but the macro no longer fires. I've also attempted coding using the VB Document_Open(), but this doesn't work at all whether locally or linked.
Any suggestions?