MSg Box naming

  • Thread starter Thread starter Jake B
  • Start date Start date
J

Jake B

Is there a way to rename the buttons on a msg box? For
instance instead of vbYesNoCancel being YES NO CANCEL can
I have it like 1 2 3 or something? If so how do you go
about doing it?

Thanks in advance
 
You can't change the buttons in a msgbox AFAIK. But you can create a small popup
form with a label for the message and whatever buttons you want.
 
The enumerations are the only valid button parameter
entries for the MsgBox function. If you want to provide
something different, you can always design your own modal form.

Hope This Helps
Gerald Stanley MCSD
 
Back
Top