About Progress Bar

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hai al
I have to implement a progress bar for a function which has only ExecuteSQLQuery statement.The query may take considerable time for completion,at that time we have to show the user progress .How can i implement this
Any idea
Thank U
 
WHere is the bottleneck? Is it on cmd.ExecuteReader or in while dr.Read()?
If the secodn, you can incrmement it within the while loop.

If it's the former, I don't know of any events or callbacks, I've certainly
looked.
Sivaraj said:
Hai all
I have to implement a progress bar for a function which has only
ExecuteSQLQuery statement.The query may take considerable time for
completion,at that time we have to show the user progress .How can i
implement this?
 
Back
Top