View Full Version : auto entry


REDaughdril
11-18-2001, 02:17 PM
How do I do an auto entry like the following example:

ID Number Mail
Name
Mail Address
City State Zip

[] if same press button

ID Number Ship (ID would be entered)
Ship Address
City State Zip

what they would do is enter the mail address info and then press the button to have the same info enter. Whey would have to enter the ID ship Number.

Thanks Rob

Jack Cowley
11-18-2001, 03:21 PM
In the On Click event of the button use code something like this:

Me.ShipAddress = Me.MailAddress
Me.ShipCity = Me.City
Me.ShipState = Me.State
Me.ShipZip = Me.Zip