Warning Symbol

C

chimp

i have a message box that displays a red circle with a cross in it, i a
wondering if there are any other symbols that are on offer for me t
use instead of this symbo

+----------------------------------------------------------------
| Attachment filename: warning.gif
|Download attachment: http://www.excelforum.com/attachment.php?postid=365662
+----------------------------------------------------------------
 
H

Harald Staff

The choices are very limited:

Sub test()
MsgBox "vbCritical", vbCritical
MsgBox "vbExclamation", vbExclamation
MsgBox "vbInformation", vbInformation
MsgBox "vbQuestion", vbQuestion
End Sub

Consider building a Userform, or even a Dialog sheet. You can do almost
anything with them.
 
J

Jason Morin

Please don't attach files to posts in this newsgroup.

I assume you're referring to Validation. You can change
the picture by changing the style in the drop-down box.
Otherwise, you'll need to switch gears and create a
userform that displays when the user keys in an
unacceptable entry. You can then put whatever picture on
that userform that you want

HTH
Jason
Atlanta, GA
 

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


Top