J Jerome Registered User. Local time Today, 06:07 Joined Jul 21, 2009 Messages 77 Jul 23, 2009 #1 Hello, Probably a simple question: How can I select a text box that is located on another form? Within form A I use me.textbox1. But if I want to call this text box on form b this does not work? Thanks in advance.
Hello, Probably a simple question: How can I select a text box that is located on another form? Within form A I use me.textbox1. But if I want to call this text box on form b this does not work? Thanks in advance.
PearlGI Registered User. Local time Today, 14:07 Joined Aug 30, 2001 Messages 125 Jul 23, 2009 #2 try Forms("FormB").textbox1 but formB must be open, so trap for this event.
J Jerome Registered User. Local time Today, 06:07 Joined Jul 21, 2009 Messages 77 Jul 23, 2009 #3 Ok great. Thanks.