I am now doing a project about Neural Networks using VC++ and got a problem when using the progress control. I want to use this
control to show the progress of training. Is there anybody can help me?
Printable View
I am now doing a project about Neural Networks using VC++ and got a problem when using the progress control. I want to use this
control to show the progress of training. Is there anybody can help me?
Hello,
First you need to assign a variable to the progress control. For example: m_progress.
Then Set the range as follows:
m_progress.SetRange(0,200);
Then set the position as follows:
m_progress.SetPos(10);
Hope this helps.
Matt