Caption item within forms

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I know how to manually alter the caption for a form, but how can I set it
dynamically????
 
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"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top