Click here to Skip to main content
15,896,063 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How to lock an edit box? Pin
Beer2627-Jul-03 5:51
Beer2627-Jul-03 5:51 
GeneralRe: How to lock an edit box? Pin
peterchen27-Jul-03 8:32
peterchen27-Jul-03 8:32 
GeneralRe: How to lock an edit box? Pin
Beer2627-Jul-03 9:09
Beer2627-Jul-03 9:09 
GeneralRe: How to lock an edit box? Pin
peterchen27-Jul-03 9:45
peterchen27-Jul-03 9:45 
AnswerRe: How to lock an edit box? Pin
peterchen27-Jul-03 7:29
peterchen27-Jul-03 7:29 
AnswerRe: How to lock an edit box? Pin
Erik Funkenbusch27-Jul-03 13:54
Erik Funkenbusch27-Jul-03 13:54 
GeneralNeed help with progress bar Pin
Snyp27-Jul-03 3:31
Snyp27-Jul-03 3:31 
GeneralRe: Need help with progress bar Pin
User 665827-Jul-03 3:42
User 665827-Jul-03 3:42 
Do you use MFC oder plain API? I case of MFC:
Drag a progress bar from the controls toolsbot to your dialog to place it there. Next, create a variable for the CProgressCtrl e.g. using the Class Wizard.
If your variable is named e.g. "m_ctlProgress", you need to set some attributes, you can do this in OnInitDialog():
// set the range
m_ctlProgress.SetRange(0, 100) // or
m_ctlProgress.SetRange(1, 255)

you can then set the postion of the blue bar with
m_ctlProgress.SetPos(128);

see MSDN for more information.

regards

modified 12-Sep-18 21:01pm.

GeneralNeed help saving.... Pin
Snyp27-Jul-03 3:19
Snyp27-Jul-03 3:19 
GeneralRe: Need help saving.... Pin
Beer2627-Jul-03 3:50
Beer2627-Jul-03 3:50 
GeneralRe: Need help saving.... Pin
Bob Stanneveld27-Jul-03 8:01
Bob Stanneveld27-Jul-03 8:01 
GeneralHyperthreading Pin
ColinDavies27-Jul-03 0:56
ColinDavies27-Jul-03 0:56 
GeneralRe: Hyperthreading Pin
Michael Dunn27-Jul-03 1:05
sitebuilderMichael Dunn27-Jul-03 1:05 
GeneralRe: Hyperthreading Pin
Ryan Binns27-Jul-03 4:50
Ryan Binns27-Jul-03 4:50 
GeneralRe: Hyperthreading Pin
ColinDavies27-Jul-03 22:34
ColinDavies27-Jul-03 22:34 
GeneralRe: Hyperthreading Pin
wb27-Jul-03 4:47
wb27-Jul-03 4:47 
GeneralRe: Hyperthreading Pin
ColinDavies27-Jul-03 22:40
ColinDavies27-Jul-03 22:40 
GeneralDifference between System process and Administrator process Pin
Hashim Saleem27-Jul-03 0:46
Hashim Saleem27-Jul-03 0:46 
GeneralRe: Difference between System process and Administrator process Pin
Michael Dunn27-Jul-03 0:50
sitebuilderMichael Dunn27-Jul-03 0:50 
GeneralRe: Difference between System process and Administrator process Pin
Hashim Saleem27-Jul-03 1:15
Hashim Saleem27-Jul-03 1:15 
GeneralRe: Difference between System process and Administrator process Pin
Michael Dunn27-Jul-03 2:10
sitebuilderMichael Dunn27-Jul-03 2:10 
Generalactivex container test with my project Pin
shinay26-Jul-03 22:58
shinay26-Jul-03 22:58 
Questionrebuild all? Pin
novachen26-Jul-03 22:48
novachen26-Jul-03 22:48 
AnswerRe: rebuild all? Pin
novachen26-Jul-03 22:52
novachen26-Jul-03 22:52 
AnswerRe: rebuild all? Pin
Beer2627-Jul-03 5:03
Beer2627-Jul-03 5:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.