Customising Message Boxes

  • Thread starter Thread starter Tim
  • Start date Start date
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)?
 
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().
 
.... 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 ...
 
Back
Top