Click here to Skip to main content
15,894,825 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Create child control Pin
Hamid_RT13-Apr-06 23:22
Hamid_RT13-Apr-06 23:22 
GeneralRe: Create child control Pin
zuma7713-Apr-06 23:47
zuma7713-Apr-06 23:47 
GeneralRe: Create child control Pin
Hamid_RT14-Apr-06 2:29
Hamid_RT14-Apr-06 2:29 
GeneralRe: Create child control Pin
zuma7714-Apr-06 4:37
zuma7714-Apr-06 4:37 
AnswerRe: Create child control Pin
Gary R. Wheeler14-Apr-06 3:26
Gary R. Wheeler14-Apr-06 3:26 
GeneralRe: Create child control Pin
zuma7714-Apr-06 4:36
zuma7714-Apr-06 4:36 
QuestionHow to simulate DoEvents() in Visual C++? Pin
WithPointer13-Apr-06 22:48
WithPointer13-Apr-06 22:48 
AnswerRe: How to simulate DoEvents() in Visual C++? Pin
nguyenvhn13-Apr-06 23:26
nguyenvhn13-Apr-06 23:26 
Something might work

void DoEvents()<br />
{<br />
    MSG dispatch;<br />
    while (::PeekMessage( &dispatch, NULL, 0, 0, PM_NOREMOVE))<br />
      {<br />
        if (!AfxGetThread()->PumpMessage());<br />
      }<br />
}

GeneralRe: How to simulate DoEvents() in Visual C++? Pin
WithPointer13-Apr-06 23:35
WithPointer13-Apr-06 23:35 
AnswerRe: How to simulate DoEvents() in Visual C++? Pin
Branislav13-Apr-06 23:38
Branislav13-Apr-06 23:38 
QuestionCannot throw my own exception from dll (not exactly true, but please read) Pin
toxcct13-Apr-06 22:39
toxcct13-Apr-06 22:39 
AnswerRe: Cannot throw my own exception from dll (not exactly true, but please read) Pin
Cedric Moonen14-Apr-06 4:17
Cedric Moonen14-Apr-06 4:17 
GeneralRe: Cannot throw my own exception from dll (not exactly true, but please read) Pin
toxcct14-Apr-06 4:25
toxcct14-Apr-06 4:25 
GeneralRe: Cannot throw my own exception from dll (not exactly true, but please read) Pin
Cedric Moonen14-Apr-06 4:35
Cedric Moonen14-Apr-06 4:35 
GeneralRe: Cannot throw my own exception from dll (not exactly true, but please read) Pin
toxcct14-Apr-06 4:35
toxcct14-Apr-06 4:35 
GeneralRe: Cannot throw my own exception from dll (not exactly true, but please read) Pin
Cedric Moonen14-Apr-06 4:38
Cedric Moonen14-Apr-06 4:38 
GeneralRe: Cannot throw my own exception from dll (not exactly true, but please read) Pin
toxcct14-Apr-06 4:46
toxcct14-Apr-06 4:46 
GeneralRe: Cannot throw my own exception from dll (not exactly true, but please read) Pin
Cedric Moonen14-Apr-06 4:52
Cedric Moonen14-Apr-06 4:52 
GeneralRe: Cannot throw my own exception from dll (not exactly true, but please read) Pin
toxcct15-Apr-06 1:14
toxcct15-Apr-06 1:14 
Generalat last, solvedn thanks to you ! Pin
toxcct15-Apr-06 8:33
toxcct15-Apr-06 8:33 
GeneralRe: at last, solvedn thanks to you ! Pin
Cedric Moonen16-Apr-06 1:45
Cedric Moonen16-Apr-06 1:45 
AnswerRe: Cannot throw my own exception from dll (not exactly true, but please read) Pin
Cedric Moonen14-Apr-06 4:43
Cedric Moonen14-Apr-06 4:43 
GeneralRe: Cannot throw my own exception from dll (not exactly true, but please read) Pin
toxcct14-Apr-06 4:45
toxcct14-Apr-06 4:45 
GeneralRe: Cannot throw my own exception from dll (not exactly true, but please read) Pin
Cedric Moonen14-Apr-06 4:49
Cedric Moonen14-Apr-06 4:49 
GeneralRe: Cannot throw my own exception from dll (not exactly true, but please read) Pin
Cedric Moonen14-Apr-06 4:54
Cedric Moonen14-Apr-06 4:54 

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.