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