Msgbox Question

  • Thread starter Grumpy Aero Guy
  • 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.
 
M

Marshall Barton

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.
 
G

Grumpy Aero Guy

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.
 

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

Top