Click here to Skip to main content
15,904,153 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Maximum UDP transmit rate is just 50 MB/s and with 100% CPU usage!?? Pin
Moak4-Aug-09 5:46
Moak4-Aug-09 5:46 
GeneralRe: Maximum UDP transmit rate is just 50 MB/s and with 100% CPU usage!?? Pin
clayman874-Aug-09 6:09
clayman874-Aug-09 6:09 
AnswerRe: Maximum UDP transmit rate is just 50 MB/s and with 100% CPU usage!?? Pin
Jim_Pen24-Feb-10 1:10
Jim_Pen24-Feb-10 1:10 
QuestionI want to work on Progress bar.Can I have ur suggestion pls? Pin
kokilag7-Jul-09 7:51
kokilag7-Jul-09 7:51 
AnswerRe: I want to work on Progress bar.Can I have ur suggestion pls? Pin
David Crow7-Jul-09 8:11
David Crow7-Jul-09 8:11 
AnswerRe: I want to work on Progress bar.Can I have ur suggestion pls? Pin
«_Superman_»7-Jul-09 15:08
professional«_Superman_»7-Jul-09 15:08 
GeneralRe: I want to work on Progress bar.Can I have ur suggestion pls? Pin
kokilag7-Jul-09 22:28
kokilag7-Jul-09 22:28 
GeneralRe: I want to work on Progress bar.Can I have ur suggestion pls? Pin
«_Superman_»7-Jul-09 22:40
professional«_Superman_»7-Jul-09 22:40 
Drag the progress bar onto the dialog.
Right click on the progress and select Add Variable.
Add a variable of type CProgressCtrl, let's say prg
In the OnInitDialog function of the dialog class do prg.SetRange(0, 100); and prg.SetStep(10);
In the place where you're calling your functions you call prg.StepIt().
function1();
prg.StepIt();
function2();
prg.StepIt();
function3();
prg.StepIt();
.
.
.


«_Superman
I love work. It gives me something to do between weekends.

GeneralRe: I want to work on Progress bar.Can I have ur suggestion pls? Pin
kokilag8-Jul-09 1:24
kokilag8-Jul-09 1:24 
GeneralRe: I want to work on Progress bar.Can I have ur suggestion pls? Pin
«_Superman_»8-Jul-09 2:10
professional«_Superman_»8-Jul-09 2:10 
GeneralRe: I want to work on Progress bar.Can I have ur suggestion pls? Pin
kokilag10-Jul-09 1:34
kokilag10-Jul-09 1:34 
QuestionRe: I want to work on Progress bar.Can I have ur suggestion pls? Pin
David Crow8-Jul-09 2:59
David Crow8-Jul-09 2:59 
AnswerRe: I want to work on Progress bar.Can I have ur suggestion pls? Pin
kokilag8-Jul-09 6:33
kokilag8-Jul-09 6:33 
QuestionRe: I want to work on Progress bar.Can I have ur suggestion pls? Pin
David Crow8-Jul-09 6:42
David Crow8-Jul-09 6:42 
AnswerRe: I want to work on Progress bar.Can I have ur suggestion pls? Pin
kokilag10-Jul-09 1:01
kokilag10-Jul-09 1:01 
GeneralRe: I want to work on Progress bar.Can I have ur suggestion pls? Pin
David Crow10-Jul-09 3:02
David Crow10-Jul-09 3:02 
GeneralRe: I want to work on Progress bar.Can I have ur suggestion pls? Pin
kokilag15-Jul-09 0:57
kokilag15-Jul-09 0:57 
GeneralRe: I want to work on Progress bar.Can I have ur suggestion pls? Pin
David Crow15-Jul-09 2:52
David Crow15-Jul-09 2:52 
QuestionRedirect video stream from window handler to a buffer Pin
GolddenEgg7-Jul-09 7:19
GolddenEgg7-Jul-09 7:19 
QuestionSpeaking of missing the basics - is there a way to dynamically size an array on the stack ? Pin
Mike the Red7-Jul-09 2:47
Mike the Red7-Jul-09 2:47 
AnswerRe: Speaking of missing the basics - is there a way to dynamically size an array on the stack ? Pin
harold aptroot7-Jul-09 2:54
harold aptroot7-Jul-09 2:54 
AnswerRe: Speaking of missing the basics - is there a way to dynamically size an array on the stack ? Pin
Stuart Dootson7-Jul-09 2:57
professionalStuart Dootson7-Jul-09 2:57 
AnswerRe: Speaking of missing the basics - is there a way to dynamically size an array on the stack ? Pin
Sarath C7-Jul-09 3:30
Sarath C7-Jul-09 3:30 
JokeThank you, kindly, Harold, Stuart, Sarath - your answers are greatly appreciated! [modified] Pin
Mike the Red7-Jul-09 3:31
Mike the Red7-Jul-09 3:31 
GeneralRe: Thank you, kindly, Harlod, Stuart, Sarath - your answers are greatly appreciated! Pin
«_Superman_»7-Jul-09 3:44
professional«_Superman_»7-Jul-09 3:44 

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.