Form Field Questions

D

Dave

I have a popup form that takes customer information including Credit Card
Information. The customer name is in 2 fields (CustomerFirst &
CustomerLast). Then farther down the form where we take CC info there is one
(1) field for the name on the Credit Card (CardName). I would like the
Credit Card name to be pre-populated with the concatenated customer first
and last names (After they have been entered at the top of the form).
How would I do this?
D
 
G

Guest

Dave,

One option could be to use the afterupdate from the lastname and place the
following in code:

me.creditcardname=me.CustomerFirst &" "&me.CustomerLast

i'm presuming the names of the textboxes are as you described..

hth
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top