Messagebox to open as soon as document opens

T

Tressa

I have a word form created. I would like to have a message box open as soon
as the document is opened.

I have the code for the box itself but how do I get it to open when just my
document is opened.


Option Explicit

Private Sub Document_Open()
MsgBox "Please Fill Out As Much As Possible", vbOKOnly
End Sub
 
Top