View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default Popup window on open

You could use a workbook open event:

Private Sub Workbook_Open()
MsgBox ("HELLO WORLD")
End Sub


If you are not familiar with VBA see:

http://www.mvps.org/dmcritchie/excel/getstarted.htm
--
g.s. gsnu200701


"kraway" wrote:

I'd like to display a popup message to anyone opening an Excel workbook. How
do I do it?