Form Caption

T

Tom

I am using the On Current event to set the Form Caption:

Private Sub Form_Current()
Form.Caption = [Product Code]
End Sub

Can I change the font size/weight of the caption with additional code?
 
F

fredg

I am using the On Current event to set the Form Caption:

Private Sub Form_Current()
Form.Caption = [Product Code]
End Sub

Can I change the font size/weight of the caption with additional code?

No you can't change it for just the Access form caption.

However, the form caption can be changed (for ALL Windows
applications) by setting the Active Title Bar Font and Size in the
Windows property dialog.

Right-click on the Desktop. Select Properties.
Click on the Appearance tab. Click on Advanced button.
Select Active Title Bar in the Item drop down. Change and apply it's
settings. Again, this will affect all applications.
 
Top