copying data across fields from form

S

seth

is there any way to copy data across fields within a table from a form?
on a lot of websites when you purchase something, you would have a bill
to/ship to address
i am building a form for this and would like to know if it is possible to
add a "same as ship to" checkbox that would copy the ship to address fields
to the bill to address fields
thanks
 
S

Sprinks

Sure, Seth. Just do a series of assignment statements in the On_Click event
of the button:

Me![ShipToContact] = Me![BillToContact]
Me![ShipToAddress]=Me![BillToAddress]
etc.
 
Top