Click here to Skip to main content
15,918,516 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Changing the DialogSize Pin
David Crow18-Jun-09 6:02
David Crow18-Jun-09 6:02 
AnswerRe: Changing the DialogSize Pin
Chris Losinger18-Jun-09 6:01
professionalChris Losinger18-Jun-09 6:01 
QuestionProblem at Wincore Pin
Software200718-Jun-09 4:32
Software200718-Jun-09 4:32 
AnswerRe: Problem at Wincore Pin
Stephen Hewitt18-Jun-09 5:07
Stephen Hewitt18-Jun-09 5:07 
GeneralRe: Problem at Wincore Pin
Software200718-Jun-09 5:19
Software200718-Jun-09 5:19 
QuestionSending HTML page as outlook body text Pin
charith8718-Jun-09 4:12
charith8718-Jun-09 4:12 
AnswerRe: Sending HTML page as outlook body text Pin
led mike18-Jun-09 4:21
led mike18-Jun-09 4:21 
GeneralRe: Sending HTML page as outlook body text Pin
charith8718-Jun-09 4:33
charith8718-Jun-09 4:33 
GeneralRe: Sending HTML page as outlook body text Pin
led mike18-Jun-09 4:56
led mike18-Jun-09 4:56 
GeneralRe: Sending HTML page as outlook body text Pin
charith8718-Jun-09 5:05
charith8718-Jun-09 5:05 
GeneralRe: Sending HTML page as outlook body text Pin
led mike18-Jun-09 5:26
led mike18-Jun-09 5:26 
GeneralRe: Sending HTML page as outlook body text Pin
charith8718-Jun-09 5:05
charith8718-Jun-09 5:05 
AnswerRe: Sending HTML page as outlook body text Pin
Stuart Dootson18-Jun-09 8:00
professionalStuart Dootson18-Jun-09 8:00 
QuestionSPLITTING MFC APPLICATIONS?????? Pin
lukeis2k2018-Jun-09 3:31
lukeis2k2018-Jun-09 3:31 
AnswerRe: SPLITTING MFC APPLICATIONS?????? Pin
KarstenK18-Jun-09 3:59
mveKarstenK18-Jun-09 3:59 
GeneralRe: SPLITTING MFC APPLICATIONS?????? Pin
lukeis2k2018-Jun-09 4:16
lukeis2k2018-Jun-09 4:16 
AnswerRe: SPLITTING MFC APPLICATIONS?????? Pin
David Crow18-Jun-09 4:39
David Crow18-Jun-09 4:39 
RantRe: SPLITTING MFC APPLICATIONS?????? Pin
lukeis2k2018-Jun-09 5:11
lukeis2k2018-Jun-09 5:11 
GeneralRe: SPLITTING MFC APPLICATIONS?????? Pin
David Crow18-Jun-09 5:27
David Crow18-Jun-09 5:27 
GeneralRe: SPLITTING MFC APPLICATIONS?????? Pin
Maximilien18-Jun-09 5:38
Maximilien18-Jun-09 5:38 
AnswerRe: SPLITTING MFC APPLICATIONS?????? Pin
Stuart Dootson18-Jun-09 7:55
professionalStuart Dootson18-Jun-09 7:55 
GeneralRe: SPLITTING MFC APPLICATIONS?????? Pin
led mike18-Jun-09 9:10
led mike18-Jun-09 9:10 
GeneralRe: SPLITTING MFC APPLICATIONS?????? Pin
Stuart Dootson18-Jun-09 9:52
professionalStuart Dootson18-Jun-09 9:52 
QuestionMem Usage keeps increasing Pin
FISH78618-Jun-09 2:45
FISH78618-Jun-09 2:45 
Can someone please help me as to why the mem usage in task manager is increasing when I run this loop.

What can I change for it not to do that?


do
    {
        for (x=1;x<27;x++)
        {
            m_bmpCtrl.RedrawWindow();
            strFileName = "F:\\Pictures\\Pic";
            _itoa_s(x,Temp,sizeof(Temp),10);
            strFileName += Temp;
            strFileName += ".bmp";
            m_bmpCtrl.LoadFile(strFileName);
            m_bmpCtrl.RedrawWindow();
            ProcessMessages();
            ::Sleep(1500);
            ProcessMessages();
            y++;
        }
    }while (bDoLoop);





Thanks a million.
QuestionRe: Mem Usage keeps increasing Pin
David Crow18-Jun-09 2:49
David Crow18-Jun-09 2:49 

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.