Click here to Skip to main content
15,905,874 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Can u help me to creat a tool that replace all file with an extension by another file Pin
animal12318-Aug-09 0:39
animal12318-Aug-09 0:39 
GeneralRe: Can u help me to creat a tool that replace all file with an extension by another file Pin
krmed18-Aug-09 0:53
krmed18-Aug-09 0:53 
QuestionRe: Can u help me to creat a tool that replace all file with an extension by another file Pin
David Crow18-Aug-09 3:13
David Crow18-Aug-09 3:13 
AnswerRe: Can u help me to creat a tool that replace all file with an extension by another file Pin
Michael Schubert18-Aug-09 4:10
Michael Schubert18-Aug-09 4:10 
Questionlinkage error Pin
MozhdehQeraati17-Aug-09 23:31
MozhdehQeraati17-Aug-09 23:31 
AnswerRe: linkage error [modified] Pin
«_Superman_»17-Aug-09 23:43
professional«_Superman_»17-Aug-09 23:43 
GeneralRe: linkage error [modified] Pin
MozhdehQeraati18-Aug-09 0:00
MozhdehQeraati18-Aug-09 0:00 
GeneralRe: linkage error Pin
«_Superman_»18-Aug-09 0:04
professional«_Superman_»18-Aug-09 0:04 
GeneralRe: linkage error Pin
MozhdehQeraati18-Aug-09 0:11
MozhdehQeraati18-Aug-09 0:11 
GeneralRe: linkage error Pin
«_Superman_»18-Aug-09 0:13
professional«_Superman_»18-Aug-09 0:13 
GeneralRe: linkage error [modified] Pin
MozhdehQeraati18-Aug-09 0:29
MozhdehQeraati18-Aug-09 0:29 
AnswerRe: linkage error Pin
KarstenK18-Aug-09 3:47
mveKarstenK18-Aug-09 3:47 
GeneralRe: linkage error Pin
MozhdehQeraati19-Aug-09 3:07
MozhdehQeraati19-Aug-09 3:07 
GeneralRe: linkage error Pin
KarstenK19-Aug-09 3:21
mveKarstenK19-Aug-09 3:21 
QuestionExchange server news groups on Microsoft Pin
tom groezer17-Aug-09 23:13
tom groezer17-Aug-09 23:13 
AnswerRe: Exchange server news groups on Microsoft Pin
Rajesh R Subramanian17-Aug-09 23:22
professionalRajesh R Subramanian17-Aug-09 23:22 
Question[D3DM] Memory & textures [modified] Pin
MMoi17-Aug-09 21:57
MMoi17-Aug-09 21:57 
AnswerRe: [D3DM] Memory & textures Pin
Cedric Moonen17-Aug-09 22:56
Cedric Moonen17-Aug-09 22:56 
GeneralRe: [D3DM] Memory & textures Pin
MMoi17-Aug-09 23:14
MMoi17-Aug-09 23:14 
AnswerRe: [D3DM] Memory & textures Pin
MMoi19-Aug-09 15:10
MMoi19-Aug-09 15:10 
Questionthumbnails are not displayed if another window is opened on Dialog box. Pin
VCProgrammer17-Aug-09 19:26
VCProgrammer17-Aug-09 19:26 
QuestionOther option in place of Sleep. Pin
Le@rner17-Aug-09 18:16
Le@rner17-Aug-09 18:16 
AnswerRe: Other option in place of Sleep. Pin
Adam Roderick J17-Aug-09 19:44
Adam Roderick J17-Aug-09 19:44 
AnswerRe: Other option in place of Sleep. Pin
«_Superman_»17-Aug-09 20:08
professional«_Superman_»17-Aug-09 20:08 
You can use MsgWaitForMultipleObjects[^].
This function returns when a message comes into the message queue.
Specify the bWaitAll parameter as FALSE.
For the pHandles parameter you can create a waitable timer using CreateWaitableTimer[^].

You can check the return value to find if the function returned because of a timeout or an event.
If it returned because of an event, retrieve the message using GetMessage[^] and use DispatchMessage[^] to send it to the window procedure for processing.

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

AnswerRe: Other option in place of Sleep. Pin
Rajesh R Subramanian17-Aug-09 20:08
professionalRajesh R Subramanian17-Aug-09 20: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.