MsgBox text size

Sess

Registered User.
Local time
Yesterday, 19:58
Joined
Jan 4, 2010
Messages
74
I need to know how to make the fonts larger on a MsgBox. I have some code in VB to warn the end user that input is needed prior to proceeding, that works how I need it to work. The customer has informed me that the font in the popup needs to be larger and more pronounced on the screen. I would like to use Tahoma 12 Bold.
I am using Access2003. Thank you.
Here is the NZ code I am using to check.

'Check for Core type
If Nz(Me.Combo5.Column(0), " ") = " " Then
MsgBox "Please Select a Core Number", vbOKOnyl, "Core Management Section"
Me.Combo5.SetFocus
Else
'do whatever
EndIf
 
You wont be able to change the message box font, but you could use an additional form to activate and have the message with the font name and size that you want.

That would be the best way around this. You can set size and position so it looks like a normal message box.

Trevor
 
Thank you for the fast answer. I guess I have a lot more work to do on this one.
 

Users who are viewing this thread

Back
Top Bottom