Give a form a good title (1 Viewer)

kupe

Registered User.
Local time
Today, 23:53
Joined
Jan 16, 2003
Messages
462
Dear Experts
Is there a simple way to change the title of a form please?
 

pungentSapling

NeedHotSauce?
Local time
Today, 18:53
Joined
Apr 4, 2002
Messages
116
Go to design view of the form, click in the box at the top left of the form to select the form... access the form properties and change the caption property to the title you want.


or you could code

me.form.caption = "Your Title"

in any event within the scope of the form.
 
Last edited:

Mile-O

Back once again...
Local time
Today, 23:53
Joined
Dec 10, 2002
Messages
11,316
If you want to do it in code:


On the same form:

Code:
Me.Caption = "Whatever"


On another form:

Code:
Forms!frmYourForm.Caption = "Whatever"
 

kupe

Registered User.
Local time
Today, 23:53
Joined
Jan 16, 2003
Messages
462
Very grateful, pungent Sapling and Mile-O-Phile, for the advice and code.
 
Last edited:

pungentSapling

NeedHotSauce?
Local time
Today, 18:53
Joined
Apr 4, 2002
Messages
116
I am using access 2000 ...... ":form" only shows up when in design view.... not in form view
 

kupe

Registered User.
Local time
Today, 23:53
Joined
Jan 16, 2003
Messages
462
Sorry, I realised my oversight too late, and rushed back for a hasty editing. But you must have seen it in between.

It gives that :form extra if you don't name it in the Caption line, or by code. I think that 's how it works. Thanks very much for the help.
 

Users who are viewing this thread

Top Bottom