G Guest Jul 14, 2005 #1 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
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
G Guest Jul 14, 2005 #3 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.
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.