Msgbox Question

  • Thread starter Thread starter Grumpy Aero Guy
  • Start date Start date
G

Grumpy Aero Guy

Is there a way to programatically control the font size in a message box?

I.e., if I wanted to make a message box from VB code HUGE, how do I approach
that???

Thank you for your input and effort.
 
Grumpy said:
Is there a way to programatically control the font size in a message box?

I.e., if I wanted to make a message box from VB code HUGE, how do I approach
that???


Not with the built in MsgBox, create your own form to use
instead.

If all you want is to display a message, you can use the
OpenArgs argument of the OpenForm method to pass the string
you want to display. Also make sure you open the form in
Dialog mode.
 
Yeah...that's what I figured.....but you can't learn without asking.

I was trying to be lazy and avoid creating a seperate "message" form.

Thanks for your rapid response.
 
Back
Top