**RESOLVED** Establish Progressbar w/ ADO Connection???
I have been searching this forum as well as the web to locate how I can accomplish this task...
I have a form that connects to a database table, and since the table has many records and several users access it, I have found that it takes between 15-30 seconds to load (it should also be noted that there are several agregate functions involved within the Form Load)
I would like to establish a progressbar that will show the users how long the connection is taking....
I am interested in any other suggestions, but at this point I am lost...
Thank you.
Re: **RESOLVED** Establish Progressbar w/ ADO Connection???
I tried the code.
The problem is that only the last FetchProgress event fires. For example if the recordset has 10,000 records and I set an update interval of 100 records, only the event showing record 9,900 fires.
It seems that the recordset behaves synchronously instead of anynchronously.
I use MDAC 2.8 and I set adAsynchFetch on the recordset.Open options
--hyperspaced