Connecting to an Access Database

Husamuddin

Member
Joined
Mar 26, 2010
Messages
8
Programming Experience
1-3
I was wondering if anyone knew of a way to retrieve, edit and insert records from a VB form into an Access database, one that does not involve OleDb.
 
Nothing, actually. I've decided to use it after all.

However, while I am using it. Suppose I enter the path to .mdb file, how do I produce the names of the tables contained in it?
 
You have a DataTable object, you can either loop it to to get the names, or bind it to a control and set the DisplayMember to "TABLE_NAME"
 
Back
Top