Display a value in another text box

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

Guest

I have a text box named ResId I would like to put that value in another text
box DisplayID how do I go about doing this?
 
I'm not sure why you would want the same value in two places but:

Me.DisplayID = Me.ResID

should do it.
 
If just to display the value, then in the control source of the second text
box you can write
=[OriginalTextBoxName]
 

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