QUOTE(Acey @ Jan 17 2006, 10:30 AM)
I'm a noob when it comes to programming but i need to finish my double module final year project. What code can I use to link an MS Access database (named db1) to my VB 6.0 system? Its a standalone system...
And besides that, is there any how I can create a database with Access to store pictures of designs that will have properties in terms of price and size? I need this so the DSS (decision support system) part can do its search and load all designs within the criteria set.
Expert programmers, please help and thanks for any information.
Don't know what to say bout ur condition..but u need to brush up ur skill....
There are several way to connect vb6 to MSAccess...the simplest way is use data control which available at the tool bar. Just specify the path of ur database location and it can connect.
Else use ADODC and follow the wizard. If wan more powerful use SQL connection.
For storing pictures using database is advisable to store the picture path only. It can store the picture in the database but not very practical. So just store ur picture elsewhere and store the path to ur database. THen u use the path to retrieve the picture using ur program. Hope this can help a bit.