ADODB Connection

F

fi.or.jp.de

I have created a userform with listbox to show Access database results
in a listbox.

If Access database has less data it pulls out data very fast.

Otherwise it takes long time to get results.

I am using this code to get data from Access database to Excel listbox

Set Conn = New ADODB.Connection
dbname = "C:\database1.accdb"
Conn.Provider = "Microsoft.ACE.OLEDB.12.0"
Conn.Properties("Data Source") = dbname
Conn.Open
..................................

How can i get the data fast ?

Any suggestion, answer.....
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top