Customising Message Boxes

T

Tim

I am trying to write code to generate a messge box with
non-standard buttons. I want the buttons to
say "Continue", "Log Another" and "Close". Is there a way
of doing this or am I stuck with the predefined options
(YesNo, YesNoCancel etc)?
 
R

Rick Brandt

Tim said:
I am trying to write code to generate a messge box with
non-standard buttons. I want the buttons to
say "Continue", "Log Another" and "Close". Is there a way
of doing this or am I stuck with the predefined options
(YesNo, YesNoCancel etc)?

You'd have to build your own form to use instead of MsgBox().
 
S

Scott McDaniel

.... or intercept the Messages and change the caption on the buttons ... talk
about fun!!!

While this can certainly be done, Rick's solution is far, far better and
more flexible ...
 
Top