Progress Bar
C / C++ / MFC
2
Posts
2
Posters
1
Views
1
Watching
-
I have dragged and dropped the progress bar control on a dialog and have also declared it's variable. Now I want to show increments in the progress bar in a loop. What would be the method of doing so. Reply me soon
First you have to tell the low and high ranges with the
SetRange( short nLower, short nUpper )
method. You can also specify a step increment with theSetStep( int nStep )
method. For showing a new progress use theStepIt( )
method. Take a look at the MSDN documentation. Everything is described there.