Message box upon opening file

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

Guest

I would like to create a message box that pops up when you open my file that
contains a message and the user has to click OK to close the box to proceed.
Similar to the gray box that pops up when opening a file that is password
protected....Help anyone?
 
Try this flipper
Private Sub Workbook_Open()
MsgBox "I would like to create a message box that pops up when you open my
file that" _
& "contains a message and the user has to click OK to close the box to
proceed." _
& "Similar to the gray box that pops up when opening a file that is
password" _
& "protected....Help anyone?"

End Sub
 
Hi Mike. Is there some type of crazy way to ready this message? I am not
sure I understand....
 
Sorry try this
Private Sub Workbook_Open()
MsgBox "I would like to create a message box"
End Sub
 
This worked GREAT! Thank you! One more question....Now, this file is saved on
a shared drive. When I open it, the message box works. When someone else
opens it, it does NOT work. How do I fix this?
 
Did you happen to put this into your personal .xls workbook instead of the
workbook
that is shared
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top