View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Michael Kintner[_3_] Michael Kintner[_3_] is offline
external usenet poster
 
Posts: 7
Default How do I display text in a (popup) window?

Use the Msgbox on Button press

Example:

msgbox "This is the direction"

msgbox Range("d10").Value


"Rick" wrote in message
...
I need to display some usage instructions when the user
clicks on a "how to use" button.

I can map the button to a macro, but how do I make excel
popup a window to display the desired text?

I looked at pivottables and forms but neither look like
the correct approach. Any thoughts?

~Rick