peroxide
peroxide

Reputation: 696

Listbox progressbar

I'm using a Listbox that extracts data from an sqldata source on a web application.
The data always appear when the operation of the sqldata source ends.
Is there a way to add a progress bar that will show how long will it take to load?
Thanks

Upvotes: 0

Views: 358

Answers (1)

Anirudh Ramanathan
Anirudh Ramanathan

Reputation: 46728

You could do the following ->

  • Find the number of rows being retrieved.
  • Use a background Worker thread to update a progress-bar(the update interval can be set on basis of the size of dataset).

See this.

Upvotes: 3

Related Questions