Warning Symbol

  • Thread starter Thread starter chimp
  • Start date Start date
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
+----------------------------------------------------------------
 
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.
 
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

sorting dates in excel 4
Currency in text box 1
How to convert text to numbers 5
Pls Help Me! 5
dynamic formula needed 26
Conditional Formatting 1
Chart of frequences of values 3
Autofilter doesn't work 7

Back
Top