Form Field Questions

  • Thread starter Thread starter Dave
  • Start date Start date
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
 
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
 
Back
Top