Is it posible to create a module that sets a form's Caption?
All forms will have the control: txtTitle which would contain the form's Title, but this title would have to include the date. Up to now I have this code
What is the code need to make this into a working module?
Using Access 2002 and Windows XP - SP1.
James
All forms will have the control: txtTitle which would contain the form's Title, but this title would have to include the date. Up to now I have this code
Code:
Function SetTitle()
On Error Resume Next
Screen.ActiveForm.Caption = Screen.ActiveControl!txtTitle & " " & Now()
End Function
What is the code need to make this into a working module?
Using Access 2002 and Windows XP - SP1.
James