Quote:
Originally Posted by shreked
Is there any way that I can get a message box come up saying "please choose template that applies" when it opens up the "open box" to click on what file to open.
|
Yes, but you're really not going about this the right way. Be that as it may, add:
MsgBox "Please choose the template that applies"
after:
With Application
Quote:
Originally Posted by shreked
And being a pain can I close the original document when the 2nd doc opened.
|
Yes, add:
ThisDocument.Close SaveChanges:=False
before:
End Sub