Click here to Skip to main content
15,921,212 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionTemporary Internet Files Pin
locoone25-Jun-07 12:00
locoone25-Jun-07 12:00 
AnswerRe: Temporary Internet Files Pin
Hamid_RT25-Jun-07 22:43
Hamid_RT25-Jun-07 22:43 
QuestionSerialized MFC classes Pin
tom groezer25-Jun-07 10:22
tom groezer25-Jun-07 10:22 
AnswerRe: Serialized MFC classes Pin
Mark Salsbery25-Jun-07 13:58
Mark Salsbery25-Jun-07 13:58 
QuestionPS/2 Mouse Access Pin
Akin Ocal25-Jun-07 10:17
Akin Ocal25-Jun-07 10:17 
AnswerRe: PS/2 Mouse Access Pin
jk chan25-Jun-07 14:24
jk chan25-Jun-07 14:24 
AnswerRe: PS/2 Mouse Access Pin
Iain Clarke, Warrior Programmer26-Jun-07 1:44
Iain Clarke, Warrior Programmer26-Jun-07 1:44 
QuestionWindows Registry Pin
Akin Ocal25-Jun-07 10:17
Akin Ocal25-Jun-07 10:17 
AnswerRe: Windows Registry Pin
Perspx25-Jun-07 11:11
Perspx25-Jun-07 11:11 
QuestionButton down increment Pin
Oliver12325-Jun-07 9:48
Oliver12325-Jun-07 9:48 
AnswerRe: Button down increment Pin
jk chan25-Jun-07 14:27
jk chan25-Jun-07 14:27 
AnswerRe: Button down increment [modified] Pin
Mark Salsbery25-Jun-07 14:31
Mark Salsbery25-Jun-07 14:31 
AnswerRe: Button down increment Pin
Michael Dunn25-Jun-07 17:34
sitebuilderMichael Dunn25-Jun-07 17:34 
QuestionRe: Button down increment Pin
Mark Salsbery25-Jun-07 17:47
Mark Salsbery25-Jun-07 17:47 
GeneralRe: Button down increment Pin
Mark Salsbery25-Jun-07 17:50
Mark Salsbery25-Jun-07 17:50 
AnswerRe: Button down increment Pin
John R. Shaw25-Jun-07 20:44
John R. Shaw25-Jun-07 20:44 
QuestionConverting project from VC++ 6.0 to Visual Studio 2005 [modified] Pin
al250025-Jun-07 9:41
al250025-Jun-07 9:41 
AnswerRe: Converting project from VC++ 6.0 to Visual Studio 2005 Pin
al250025-Jun-07 10:52
al250025-Jun-07 10:52 
QuestionCreating threads Pin
tom groezer25-Jun-07 8:56
tom groezer25-Jun-07 8:56 
AnswerRe: Creating threads Pin
led mike25-Jun-07 9:32
led mike25-Jun-07 9:32 
QuestionWhile debugging linker can't open *.exe file because it still is in use Pin
knapak25-Jun-07 8:35
knapak25-Jun-07 8:35 
QuestionShortcut key? Pin
dSolariuM25-Jun-07 6:43
dSolariuM25-Jun-07 6:43 
AnswerRe: Shortcut key? Pin
Cyrilix25-Jun-07 7:05
Cyrilix25-Jun-07 7:05 
AnswerRe: Shortcut key? Pin
James R. Twine25-Jun-07 8:44
James R. Twine25-Jun-07 8:44 
QuestionDebug Problem Pin
VC_RYK25-Jun-07 4:22
VC_RYK25-Jun-07 4:22 
Hi All

I am try to create a thread using createthread and this is my code
DWORD dwThrdParam = 10;
HANDLE hThread = CreateThread(NULL,0,WorkerProc, &dwThrdParam,0,NULL);
when i am debuging this then it is not going to "WorkerProc" so i am not able to understand whether this thread is running or not and this the thread

DWORD WINAPI WorkerProc(LPVOID pParam)

And it is returning some value.
may i know why it is not going to that thread while debuging


With regards
RYK

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.