Creating a Dynamic Bar Graph for data loads

Joined
Jun 17, 2003
Messages
7
I have an application that loads database information into an array and does some amount of processing. This takes time and to let users know something is happening (to show the program hasn
 
VB.Net ships with a progress bar control. Simply add that to the form.
Set its maximum property to the number of lines and add 1 to its Value property every time you read a line in.

More importantly though - you really should be using the .Net file access methods. Look at System.IO or search these boards for many examples.
 
Back
Top