i will recommend you not to use the ado control directly,
instead use the microsoft active x data library(select it from refrences) and then create a connection string in a module in your project
as you are using
vb i hope you are completely aquinted with it
an example of connection string in module
Public Con As New ADODB.Connection
Public Rs As New ADODB.Recordset
Public Sub Connect()
Con.Provider = "Microsoft.Jet.Oledb.3.51"
Con.ConnectionString = "Data Source = " & App.Path & "\Database.mdb"
Con.Open
End Sub
then you can call this connect procedure anywhere in your program(you will need to use it just once) then use the recordset to fill it by using SQL qeuries
hope this will help you, for more you can mail me