How to change the font size of the text inside the MsgBox?

  • Thread starter Thread starter azu_daioh
  • Start date Start date
A

azu_daioh

I'm trying to figure out how I could increase the size of the text in
my MsgBox. Please help!

Sub popupres1()
Msg = "System Indicators are...." & Chr(13) & Chr(13) & "example
1..."
Style = vbInformation
Title = "Training Objective #1"
Response = MsgBox(Msg, Style, Title)

End Sub


I want the value of Msg to display in larger font. I would also like
to set some of the words underlined and bold? Any help is greatly
appreciated.


Thank you,

Sharon
 
I'm trying to figure out how I could increase the size of the text in
my MsgBox. Please help!

You can't do this through VB/VBA.

What you could do is create your own user form that looks like a message box
(or adds other features). You can make the text and other formatting whatever
you like then.
 
I was afraid of that....thank you for confirming it. I might try the
userform then.
 
You can change the font in control panel>display setting>message box. It does
affect everything though!
 
Back
Top