Click to See Complete Forum and Search --> : How to use CProgressCtrl?


April 18th, 1999, 03:13 PM
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?

Matt Hauser
April 19th, 1999, 09:10 PM
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