Caption item within forms

  • Thread starter Thread starter Guest
  • Start date Start date
Patrick said:
I know how to manually alter the caption for a form, but how can I
set it dynamically????

Forms!NameOfForm.Caption = "New Caption"

Or if code is in form's module...

Me.Caption = "New Caption"
 
Back
Top