Custom Captions

B

BaWork

I would like to set the Caption value of form to include a variable from
the form. The variable name is "full_name". I would like the Caption
to be:

Application for Employment - "full_name"

How do I do this?

Thanks.

Brett
 
R

Rick Brandt

BaWork said:
I would like to set the Caption value of form to include a variable from the
form. The variable name is "full_name". I would like the Caption to be:

Application for Employment - "full_name"

How do I do this?

In the Current event of the form...

Me.Caption = "Application for Employment - " & full_name
 
M

Mark

In the form's OnCurrent event:

Me.Caption = "Application for Employment - " & full_name

Now, when you move from record to record, the form's caption will change to
show the current "full_name".
 
Top