text box

  • Thread starter Thread starter Martin
  • Start date Start date
M

Martin

Question; how do I get one text box to equal the value in
another text box? For example I have one text box name
txtNumber and another text box named txtNumber2 when a
user enters 20 in txtNumber I want txtNumber2 to
automatically fill in with 20 as well.

Your help is appreciated,
Martin
 
Hi Martin,

Simple!

Put the following code in the AfterUpdate event of txtNumber:

Me!txtNumber2 = Me!txtNumber
 
Back
Top