Progress bar problem.
-
Hi, I have a progress bar and I set the range using m_datprog.SetRange(0,Prog) The problem I have is that the progress bar is full before it reaches the maximum limit (prog). Any help would be appreciated. Thanks, DS
-
Hi, I have a progress bar and I set the range using m_datprog.SetRange(0,Prog) The problem I have is that the progress bar is full before it reaches the maximum limit (prog). Any help would be appreciated. Thanks, DS
Hi, Are you using a timer with the progress bar? Cause it sounds like you just set the progressbar, but never increment it?!
Regards Programm3r
-
Hi, I have a progress bar and I set the range using m_datprog.SetRange(0,Prog) The problem I have is that the progress bar is full before it reaches the maximum limit (prog). Any help would be appreciated. Thanks, DS
I think this might help you.... http://www.codeproject.com/miscctrl/ProgressBar.asp?df=100&forumid=12&exp=0&select=416338[^]
Regards Programm3r
-
Hi, I have a progress bar and I set the range using m_datprog.SetRange(0,Prog) The problem I have is that the progress bar is full before it reaches the maximum limit (prog). Any help would be appreciated. Thanks, DS
See
CProgressCtrl::SetPos(...)
_**
**_
WhiteSky
-
Hi, I have a progress bar and I set the range using m_datprog.SetRange(0,Prog) The problem I have is that the progress bar is full before it reaches the maximum limit (prog). Any help would be appreciated. Thanks, DS
If you set the control's range with
SetRange(0, 100)
, and then callSetPos(125)
part-way through some process, the control will indeed show 100% even though the process is not done. Does that sound like what you might have?
"Money talks. When my money starts to talk, I get a bill to shut it up." - Frank
"Judge not by the eye but by the heart." - Native American Proverb