Populate text box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top