Write a handler for the OnFetchProgress event. From the reference:
Write an OnFetchProgress event handler to take specific action during
an asynchronous data retrieval operation. The OnFetchProgress event
fires periodically during the data retrieval to provide indications of
its progress. Create a handler for this event to react to this
periodic notification, such as providing the user with a visual
indication of the progress of the data retrieval.
Note that the MaxProgress value that will be passed to the OnFetchProgress event is a best guess. From How To Use the ADO FetchProgress and FetchComplete Events:
MaxProgress is not equal to the actual number of records that will be
returned. ADO has to fetch the records in order to get this value.
This means MaxProgress is only ever a best guess. MaxProgress usually
equals Progress plus Background Fetch Size.
You can issue a Select Count() .. to the database as mentioned in Diego's answer before you open your query to get an exact total number of records that will be retrieved, but that's not always desirable as it might lead to redundant table scan and considerable execute time for complex queries.
Application.ProcessMessagesand it is based on the same mistake as I thought before Sertac edited my post here. – TLama Oct 19 '12 at 13:05