Copy/paste a phone number

  • Thread starter Thread starter smael via AccessMonster.com
  • Start date Start date
S

smael via AccessMonster.com

I have 2 forms : Argumentaire form and Client form. When the user enters
the phone number in the Argumentaire's form, I'd like to copy
the phone number field already entered in Argumentaire form, and paste in the
phone number field in client form(after he pushs a button in Argumentaire
form).


i'm thankful for any help regarding this matter

thanks again!
 
In the button's Click event, include code similar to this:
Me!txtPhoneNumber1 = Forms!Client!txtPhoneNumber2

You'll have to change PhoneNumber1 and 2 to be the names of the text fields
in your forms.
 
Back
Top