G Guest Jan 30, 2006 #1 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 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?
P Pat Hartman\(MVP\) Jan 30, 2006 #2 I'm not sure why you would want the same value in two places but: Me.DisplayID = Me.ResID should do it.
I'm not sure why you would want the same value in two places but: Me.DisplayID = Me.ResID should do it.
G Guest Jan 30, 2006 #3 If just to display the value, then in the control source of the second text box you can write =[OriginalTextBoxName]
If just to display the value, then in the control source of the second text box you can write =[OriginalTextBoxName]