A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Word » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Pop Up Note in Word



 
 
Thread Tools Display Modes
  #1  
Old June 23rd, 2004, 03:36 PM
Andrea
external usenet poster
 
Posts: n/a
Default Pop Up Note in Word

Does anyone know of a way to: Have a pop-up note (comment?) appear when opening a specific WORD document. Then, the note would close. I am assuming that a macro would be used but I do not know how to create a note to pop up and close. Thanks in advance.
--
Andrea
  #2  
Old June 23rd, 2004, 06:11 PM
Beth Melton
external usenet poster
 
Posts: n/a
Default Pop Up Note in Word

Hi Andrea,

You could display a message box when the document opens. Is something like that what you are looking for?

The macro would need to be placed in ThiDocument module and look something like:

Private Sub Document_Open()
‘Display message box with Information icon and Notice in title bar
MsgBox "Type message here", vbInformation, "Notice"
End Sub

If you need specific instructions:

- Press Alt + F11 to open the Visual Basic Editor
- In the Project Explorer locate your document
- Double-click ThisDocument
- Copy/paste the macro from this reply
- Modify the message inside of the quotes

--
Please post all follow-ups to the newsgroup. Email requests for assistance can not be acknowledged.

~~~~~~~
Beth Melton

Word FAQ: http://mvps.org/word
TechTrax: http://mousetrax.com/techtrax/


"Andrea" wrote:

Does anyone know of a way to: Have a pop-up note (comment?) appear when opening a specific WORD document. Then, the note would close. I am assuming that a macro would be used but I do not know how to create a note to pop up and close. Thanks in advance.
--
Andrea

  #3  
Old June 23rd, 2004, 07:55 PM
Andrea
external usenet poster
 
Posts: n/a
Default Pop Up Note in Word

Thank you Beth for the help. I apologize but I seem to be thick-headed with this. I pasted the macro into ThisDocument and saved my file titled "TEST". When I reopen the file, I do not see the message I typed into the macro. Perhaps I am missing a step. If you have any additional info, I would greatly appreciate your reply.
--
Andrea


"Beth Melton" wrote:

Hi Andrea,

You could display a message box when the document opens. Is something like that what you are looking for?

The macro would need to be placed in ThiDocument module and look something like:

Private Sub Document_Open()
‘Display message box with Information icon and Notice in title bar
MsgBox "Type message here", vbInformation, "Notice"
End Sub

If you need specific instructions:

- Press Alt + F11 to open the Visual Basic Editor
- In the Project Explorer locate your document
- Double-click ThisDocument
- Copy/paste the macro from this reply
- Modify the message inside of the quotes

--
Please post all follow-ups to the newsgroup. Email requests for assistance can not be acknowledged.

~~~~~~~
Beth Melton

Word FAQ: http://mvps.org/word
TechTrax: http://mousetrax.com/techtrax/


"Andrea" wrote:

Does anyone know of a way to: Have a pop-up note (comment?) appear when opening a specific WORD document. Then, the note would close. I am assuming that a macro would be used but I do not know how to create a note to pop up and close. Thanks in advance.
--
Andrea

  #4  
Old June 24th, 2004, 05:46 AM
Beth Melton
external usenet poster
 
Posts: n/a
Default Pop Up Note in Word

Hi Andrea,

You aren't being thick-headed. :-)

I suspect your macro security is set to High (or very High if using Word 2003) and it is preventing the macro from running.

Go to Tools/Options/Security and set your macro security to Medium (recommended) setting.

--
Please post all follow-ups to the newsgroup. Email requests for assistance can not be acknowledged.

~~~~~~~
Beth Melton

Word FAQ: http://mvps.org/word
TechTrax: http://mousetrax.com/techtrax/


"Andrea" wrote:

Thank you Beth for the help. I apologize but I seem to be thick-headed with this. I pasted the macro into ThisDocument and saved my file titled "TEST". When I reopen the file, I do not see the message I typed into the macro. Perhaps I am missing a step. If you have any additional info, I would greatly appreciate your reply.
--
Andrea


"Beth Melton" wrote:

Hi Andrea,

You could display a message box when the document opens. Is something like that what you are looking for?

The macro would need to be placed in ThiDocument module and look something like:

Private Sub Document_Open()
‘Display message box with Information icon and Notice in title bar
MsgBox "Type message here", vbInformation, "Notice"
End Sub

If you need specific instructions:

- Press Alt + F11 to open the Visual Basic Editor
- In the Project Explorer locate your document
- Double-click ThisDocument
- Copy/paste the macro from this reply
- Modify the message inside of the quotes

--
Please post all follow-ups to the newsgroup. Email requests for assistance can not be acknowledged.

~~~~~~~
Beth Melton

Word FAQ: http://mvps.org/word
TechTrax: http://mousetrax.com/techtrax/


"Andrea" wrote:

Does anyone know of a way to: Have a pop-up note (comment?) appear when opening a specific WORD document. Then, the note would close. I am assuming that a macro would be used but I do not know how to create a note to pop up and close. Thanks in advance.
--
Andrea

  #5  
Old June 24th, 2004, 02:44 PM
Andrea
external usenet poster
 
Posts: n/a
Default Pop Up Note in Word

Thank you Beth. It works great now. Boy, I never would have figured that one out. WORD is not my area of expertise. EXCEL is what I work with the most.

Thanks a million. Have a great day.
--
Andrea


"Beth Melton" wrote:

Hi Andrea,

You aren't being thick-headed. :-)

I suspect your macro security is set to High (or very High if using Word 2003) and it is preventing the macro from running.

Go to Tools/Options/Security and set your macro security to Medium (recommended) setting.

--
Please post all follow-ups to the newsgroup. Email requests for assistance can not be acknowledged.

~~~~~~~
Beth Melton

Word FAQ: http://mvps.org/word
TechTrax: http://mousetrax.com/techtrax/


"Andrea" wrote:

Thank you Beth for the help. I apologize but I seem to be thick-headed with this. I pasted the macro into ThisDocument and saved my file titled "TEST". When I reopen the file, I do not see the message I typed into the macro. Perhaps I am missing a step. If you have any additional info, I would greatly appreciate your reply.
--
Andrea


"Beth Melton" wrote:

Hi Andrea,

You could display a message box when the document opens. Is something like that what you are looking for?

The macro would need to be placed in ThiDocument module and look something like:

Private Sub Document_Open()
‘Display message box with Information icon and Notice in title bar
MsgBox "Type message here", vbInformation, "Notice"
End Sub

If you need specific instructions:

- Press Alt + F11 to open the Visual Basic Editor
- In the Project Explorer locate your document
- Double-click ThisDocument
- Copy/paste the macro from this reply
- Modify the message inside of the quotes

--
Please post all follow-ups to the newsgroup. Email requests for assistance can not be acknowledged.

~~~~~~~
Beth Melton

Word FAQ: http://mvps.org/word
TechTrax: http://mousetrax.com/techtrax/


"Andrea" wrote:

Does anyone know of a way to: Have a pop-up note (comment?) appear when opening a specific WORD document. Then, the note would close. I am assuming that a macro would be used but I do not know how to create a note to pop up and close. Thanks in advance.
--
Andrea

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 04:40 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.