Progress bar help! [VB6?]
Filed Under zjbr.com |
How can i make my progress bar actually move?
thanks!
Tucker explained it pretty, well but it might be a good idea to jump lines.
people and their outdated IDE's
i set the progress bar to 0 and the max to the number of lines in the file
ProgressBar.Max = LinesInFile(CMDialog.FileName)
ProgressBar.value = 0
then i went through the file and with a loop and incremented the valuie after each line was loaded
ProgressBar.value = ProgressBar.value + 1
#If you have any other info about this subject , Please add it free.# |