I think you might have to clarify your situation a bit. For just displaying data and inserting new data into a textbox... well, that's what Access does, pretty much automatically. A textbox on a bound form will display the data its bound to, and then you can also enter a new record from the same form. For anything other than that, we need more information.
SORRY FOR CONFUSING YOU. BUT MY REAL SITUATION IS THE SYNCRONIZATION OF THREE TEXTBOX. HOW CAN I DO THAT? AND THE OTHER ONE, I HAVE A FORMS WHICH HAS 12 TABS AND EACH TAB IS A TABLE. I WANT TO MAKE A SELECT FROM THE FIRST TAB AND WANT THE FOLLOWING TABS TO RECEIVE THEIR SPECIFIC INFORMATION FROM THE DATABASE. IAM TRYING BUT CAN´T BE ABLE. CAN U HELP? THIS SELECTION WILL CONSIST OF THE KEY SET FOR ALL OF THEM FROM THE FIRST TAB. MUST I USE FILTER FOR EACH COLUMN? PLEASE HELP.
AQM
Synchronization of three textboxes, huh? Well, I'm still not sure if I understand completely, but if I needed to synchronize three textboxes, I'd do something like this:
If you've got three textboxes (say, txtOne, txtTwo, and txtThree), put code in the AfterUpdate event of each one to set the other two equal to itself, like this:
Code:
Private Sub txtOne_AfterUpdate()
txtTwo = TxtOne
txtThree = txtOne
End Sub
Hope this helps a little. As for the tab thing, sorry, I'm completely lost.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.