hello....I am a new member and I hope you can help me to solve my problem. I am using VB6.0 and I want to link with the MS Access table. I done everything like creating the table and set all the object in the VB interface but the only thing left is the coding part pliz can someone help me out with the coding....
Connect Access table to VB6 application
Collapse
X
-
Originally posted by litahello....I am a new member and I hope you can help me to solve my problem. I am using VB6.0 and I want to link with the MS Access table. I done everything like creating the table and set all the object in the VB interface but the only thing left is the coding part pliz can someone help me out with the coding....
Try this code:
con.open "Provider=micro soft.jet.oledb. 4.0; datasource=data base name"
rs.open "select * from tablename",con, 3,3
connection complete
Happy Coding
Comment