Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Textbox Simple SQL

Status
Not open for further replies.

nim180

IS-IT--Management
Joined
Aug 11, 2005
Messages
161
Location
AU
Hi everyone i just have a simple problem which i am hoping someone can help me with. Say if i have 2 textboxes, textbox1 and textbox2, i want whatever information in textbox1 to also appear in textbox2 (the same information). Can someone give me a simple SQL statement to do this. Thank you
 
Why SQL? It would be a lot easier with VBA.
 
Ummm. Set the control source of both text boxes to the same data field.

Gary
gwinn7
 
private sub textbox1_AfterUpdate
textbox2 = textbox1
end sub


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top