Populate text box

E

Esrei

I want a textbox to be populated automaticly with the same value as was typed
into another textbox on the same form same line. I'm stuck
 
S

Sprinks

Hi, Esrei.

While it's a simple matter to do this, why would you want or need to? It
makes me question whether your application is normalized.

But, the code, in the AfterUpdate event procedure of the first textbox, is:

Me![MySecondTextbox] = Me![MyFirstTextbox]

Hope that helps.
Sprinks.
 
Top