alastair69
Registered User.
- Local time
- Today, 07:20
- Joined
- Dec 21, 2004
- Messages
- 562
This issue has been fix but thought it was a great bit of shared learning, and thought it may help others.
how to re-caption a form using a custom heading.
*********************************************************
This is what I have, placed on the on current of the form.
Ian_OK
Private Sub Form_Current()
If Me.NewRecord Then
Me.Caption = " NEW RECORD BEING ENTERED "
Else
Me.Caption = " " & Me.Title & " " & Me.First_Name & " " & Me.Surname & " "
End If
End Sub
**********************************************************
how to re-caption a form using a custom heading.
*********************************************************
This is what I have, placed on the on current of the form.
Ian_OK
Private Sub Form_Current()
If Me.NewRecord Then
Me.Caption = " NEW RECORD BEING ENTERED "
Else
Me.Caption = " " & Me.Title & " " & Me.First_Name & " " & Me.Surname & " "
End If
End Sub
**********************************************************