-
Label.Caption way...?
Hello, I'm new in VB programming and I need some help.
I have a Access database Base.mdb with some tables: table1, table2,... In this tables are some data with ID's (not autonumber).
OK...
On the Form I have some Text boxes and some label's with blank Caption. Each TextBox has his own label.
Now I would like to type in this TextBox ID, press Enter and the Label.Caption would be the data for that inserted ID.
When I would selected all data I would press Save button and the data in Label's must be saved in another database Base1.mdb.
Anyone know some code sample for that?
Sorry for my bad English..:)
Thank you...
-
Use the OnChange event
Label1.Caption = Text1.text
-
Yes, but I want to call the data from database. Each Id has his own data. What is the connection for that and SQL?