Font and Size in Message Boxes?

  • Thread starter Thread starter Alice
  • Start date Start date
A

Alice

Hi,

Is there anyway to change the font and font size in a
simple MessageBox.Show statement?

Thanks!
Alice
 
* "Alice said:
Is there anyway to change the font and font size in a
simple MessageBox.Show statement?

No, there are no properties to change that, but change your system's
font settings, they will be applied to the messagebox.
 
Thanks, Herfried!

It's too bad there isn't a way to change that in one's
program.

I'll do as you suggest.
 
Alice said:
It's too bad there isn't a way to change that in one's
program.

I think it is not necessary. Otherwise the user would have chosen different
settings. In addition you can show your own Form instead of the default
msgbox.
 
* "Alice said:
It's too bad there isn't a way to change that in one's
program.

Maybe it's possible with a dialog hook, but that would require heavy
p/invoke and is an "advanced" topic.
 
Back
Top