I have the following code below for a label that changes its caption. Does anyone know how to change the "Adding New Record" caption to red color font? What would I have to add to this code to make it happen? I only want the font to change color when it says "Adding New Record".
If Me.NewRecord Then
Me.lblRecordCounter.Caption = "Adding New Record"
Else
Me.lblRecordCounter.Caption = _
"Record " & Me.CurrentRecord & " of " & Me.Recordset.RecordCount
End If
Thanks.