Changing Form Title

  • Thread starter Thread starter Steve
  • Start date Start date
S

Steve

Hi,

Is there any way of changing the Title Bar on a form
through code? I am using Access 97 and the help files say
it is not possible, but who can wholly trust the help
files? :)

Cheers,
Steve.
 
Are you referring to the form's caption property?
You can change this anytime you like.
Anywhere in your code behind an event or something just do this:

Me.Form.Caption = "New Title Here"
 
Back
Top