opening Macro

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can anyone help me create a macros that will give a simple instruction when a template is opened, and then close on a cllick

Know how to do this in Access but cannot work it out on word, as I do not use it too much

Regard
Cheryl
 
Cheryl,

I the following will open a message box that you could use for instructions
that you want to appear when a "new document" based on your template is
created.

Sub AutoNew()

Dim Inst As VbMsgBoxResult
On Error GoTo ExitSub
Inst = MsgBox("Type your instructions here.", vbOKOnly, "Instructions")
ExitSub:
End Sub
 
Back
Top