.mdb - how to start

Salat

Well-known member
Joined
Mar 5, 2002
Messages
81
Location
Poland, Silesia
If I have a .mdb file how to create an application which will operate at this file.

How to start, which controls use, please tell me, Im realy dont get it where to select the file, which property of which control use.

thank You

Piotrek
 
First you have to decide what kind of application you want to develop with the .mbd file you have.
The steps includes:
creating a OleDbConnection first to the datasource and then creating a OleDbDataAdapter and then through the OleDbDataReader, you can read the data and display on the controls on the windows form.

The following link can help you:
http://www.vbdotnetheaven.com/Code/Apr2003/003.asp
 
Back
Top