J
Jamie
I'm working in Word 2002 and have a macro that will run when the form is
open. The following coding works if the user opens the document in Word,
however if they open it through Explorer, the macro does not run.
Private Sub Document_Open()
Dim Msg, Style, Title, Response
Msg = "My message here."
Title = "Shift + Tab Key Error"
Response = MsgBox(Msg, Style, Title)
End Sub
Is there a way to get this to run whether the user opens the document in
Word or Explorer?
open. The following coding works if the user opens the document in Word,
however if they open it through Explorer, the macro does not run.
Private Sub Document_Open()
Dim Msg, Style, Title, Response
Msg = "My message here."
Title = "Shift + Tab Key Error"
Response = MsgBox(Msg, Style, Title)
End Sub
Is there a way to get this to run whether the user opens the document in
Word or Explorer?