Change form Name with Code

  • Thread starter Thread starter John
  • Start date Start date
J

John

I would like to be able to change the form caption using VBA to display the
value of variable.
Can this be done? Any examples would be of great help.

Thanks
 
John said:
I would like to be able to change the form caption using VBA to display the
value of variable.

Me.Caption = "Working on item " & Me.txtItemNumber
 
Back
Top