Variable form caption

christheancient

Registered User.
Local time
Today, 15:40
Joined
Dec 28, 2002
Messages
41
Somewhere, in the past, I have seen a form that has a caption giving "variable" information - like a customer's name.

I am designing a simple (but complex to a "noddy" like me) database of customer records.

My database is more than adequate with defined captions for the basic user form, but I would like to be a smarty-pants and impress myself by having a form caption that may say something like "Customer record for [FirstName] & " " & [LastName]" but I've not managed to crack it.

Any thoughts, folks.

tia

Chris :confused:
 
In the forms OnLoad property you could put;

Me.Caption = "Customer Information for " & strCustomerName
 
Mile-O-Phile...

Thanks. It works!

I am suitably impressed - let's hope my users are.

ps What took so long ;)

Chris
 

Users who are viewing this thread

Back
Top Bottom