
Ado, data environment and asynchronous open for recordset
Hi to all,
I have tryed how to find out how to make asynchronous recordset
opening for MDB database (Access 97/2000).
Maybe this will save someone a lot of time of playing :)
Wrong code - recorset is still opened synchronously:
DataEnvir.Recordsets("name_of_command").Open , , , , adAsyncFetch
Right code -* works great:
DataEnvir.Recordsets("name_of_command").Open , , , , adAsyncExecute +
adAsyncFetch
regards
David