Custom Captions

  • Thread starter Thread starter BaWork
  • Start date Start date
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
 
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
 
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".
 
Back
Top