Changing fonts in msgbox

  • Thread starter Thread starter ripclaw
  • Start date Start date
R

ripclaw

If i create a msgbox with a prompt, can i change or modify the font of
the text in the msgbox ?? Ditto Inputbox....

thanks!
 
You can't change the font used in a MsgBox. This limitation is one of the
prices you pay for the simplicity of a MsgBox. If you need to change the
font, you need to create a UserForm and display that form instead of using a
MsgBox.
 
Or if you want change the default font for message box in the display
properties in your Windows control panel

Chip Pearson said:
You can't change the font used in a MsgBox. This limitation is one of the
prices you pay for the simplicity of a MsgBox. If you need to change the
font, you need to create a UserForm and display that form instead of using a
MsgBox.
 
Back
Top