Click here to Skip to main content
15,898,895 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Extern function template !? Pin
Joaquín M López Muñoz25-Apr-02 20:54
Joaquín M López Muñoz25-Apr-02 20:54 
GeneralPassing Parameter to hook DLL Pin
Sameer Maggon25-Apr-02 20:20
Sameer Maggon25-Apr-02 20:20 
GeneralRe: Passing Parameter to hook DLL Pin
Joaquín M López Muñoz25-Apr-02 20:29
Joaquín M López Muñoz25-Apr-02 20:29 
GeneralRe: Passing Parameter to hook DLL Pin
Sameer Maggon25-Apr-02 21:24
Sameer Maggon25-Apr-02 21:24 
GeneralRe: Passing Parameter to hook DLL Pin
Joaquín M López Muñoz25-Apr-02 22:34
Joaquín M López Muñoz25-Apr-02 22:34 
GeneralRe: Passing Parameter to hook DLL Pin
Sameer Maggon25-Apr-02 23:11
Sameer Maggon25-Apr-02 23:11 
GeneralProgressbar as Part of Statusbar :: MFC Pin
valikac25-Apr-02 20:14
valikac25-Apr-02 20:14 
GeneralRe: Progressbar as Part of Statusbar :: MFC Pin
Roger Allen26-Apr-02 1:57
Roger Allen26-Apr-02 1:57 
If your doing this loop in your user interface thread, then its not allowing the messages generated from your loop to be processed. Try adding this into the loop:

MSG msg ;
while (::PeekMessage(&msg, NULL, 0, 0, PM_NOYIELD | PM_REMOVE))
    {
    ::TranslateMessage(&msg) ;
    ::DispatchMessage(&msg) ;
    }



Roger Allen
Sonork 100.10016

If I had a quote, it would be a very good one.
GeneralRe: Progressbar as Part of Statusbar :: MFC Pin
valikac26-Apr-02 4:56
valikac26-Apr-02 4:56 
GeneralRe: Progressbar as Part of Statusbar :: MFC Pin
Roger Allen26-Apr-02 5:53
Roger Allen26-Apr-02 5:53 
GeneralRe: Progressbar as Part of Statusbar :: MFC Pin
valikac26-Apr-02 6:46
valikac26-Apr-02 6:46 
GeneralRe: I see your point Pin
valikac26-Apr-02 6:53
valikac26-Apr-02 6:53 
GeneralRe: Message Pump Pin
valikac26-Apr-02 16:23
valikac26-Apr-02 16:23 
GeneralCOM - History Extraction Pin
Sameer Maggon25-Apr-02 19:11
Sameer Maggon25-Apr-02 19:11 
GeneralDetermining Active View :: MFC Pin
valikac25-Apr-02 15:35
valikac25-Apr-02 15:35 
GeneralRe: Determining Active View :: MFC Pin
Joao Vaz25-Apr-02 18:55
Joao Vaz25-Apr-02 18:55 
GeneralRe: Determining Active View :: MFC Pin
valikac25-Apr-02 19:35
valikac25-Apr-02 19:35 
GeneralTaskbaricon for every childwindow in MDI Pin
Danny Springer25-Apr-02 13:06
Danny Springer25-Apr-02 13:06 
GeneralRe: Taskbaricon for every childwindow in MDI Pin
Matt Newman25-Apr-02 13:39
Matt Newman25-Apr-02 13:39 
GeneralRe: Taskbaricon for every childwindow in MDI Pin
Danny Springer25-Apr-02 19:50
Danny Springer25-Apr-02 19:50 
GeneralRe: Taskbaricon for every childwindow in MDI Pin
Nish Nishant25-Apr-02 15:06
sitebuilderNish Nishant25-Apr-02 15:06 
GeneralRe: Taskbaricon for every childwindow in MDI Pin
25-Apr-02 17:51
suss25-Apr-02 17:51 
GeneralRe: Taskbaricon for every childwindow in MDI Pin
Paul M Watt26-Apr-02 4:07
mentorPaul M Watt26-Apr-02 4:07 
GeneralCustom Command Routing :: MFC Pin
valikac25-Apr-02 12:24
valikac25-Apr-02 12:24 
GeneralRe: Custom Command Routing :: MFC Pin
Nish Nishant25-Apr-02 15:08
sitebuilderNish Nishant25-Apr-02 15:08 

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.