Click here to Skip to main content
15,885,875 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: passing a variable inside thread Pin
Rajesh R Subramanian23-Dec-09 21:57
professionalRajesh R Subramanian23-Dec-09 21:57 
QuestionRe: passing a variable inside thread Pin
CPallini23-Dec-09 22:25
mveCPallini23-Dec-09 22:25 
AnswerRe: passing a variable inside thread Pin
Rajesh R Subramanian23-Dec-09 22:32
professionalRajesh R Subramanian23-Dec-09 22:32 
GeneralRe: passing a variable inside thread Pin
Adam Roderick J23-Dec-09 22:39
Adam Roderick J23-Dec-09 22:39 
GeneralRe: passing a variable inside thread Pin
CPallini23-Dec-09 23:05
mveCPallini23-Dec-09 23:05 
GeneralRe: passing a variable inside thread Pin
Adam Roderick J23-Dec-09 22:34
Adam Roderick J23-Dec-09 22:34 
GeneralRe: passing a variable inside thread Pin
Rajesh R Subramanian24-Dec-09 1:38
professionalRajesh R Subramanian24-Dec-09 1:38 
AnswerRe: passing a variable inside thread Pin
Rajesh R Subramanian23-Dec-09 21:49
professionalRajesh R Subramanian23-Dec-09 21:49 
The variable you pass to the thread should be put on the heap. You could use it from within the thread and delete if it is not needed any more.
UINT ThreadFunc(LPVOID p)
{
  CString *pStr = (CString*)p;
  //use pStr here
  //delete pStr if it should be.
  return FALSE;
}

CMyDlg::SpawnThread()
{
  CString *pSz = new CString(_T("Some value"));
  AfxBeginThread(ThreadFunc, pSz);
}



“Follow your bliss.” – Joseph Campbell

Questionupload larger file using Ftp in c+ Builder problem Pin
raj157623-Dec-09 18:37
raj157623-Dec-09 18:37 
QuestionI want to attach my window to the parent window so that on resizing or minimizing the parent window, the child window should be resized and moved appropriately Pin
manoharbalu23-Dec-09 18:30
manoharbalu23-Dec-09 18:30 
AnswerRe: I want to attach my window to the parent window so that on resizing or minimizing the parent window, the child window should be resized and moved appropriately Pin
Richard MacCutchan23-Dec-09 22:20
mveRichard MacCutchan23-Dec-09 22:20 
Questionhow to disable keyboard accelerators temporarily in a mdi application Pin
Prasann Mayekar23-Dec-09 17:04
Prasann Mayekar23-Dec-09 17:04 
AnswerRe: how to disable keyboard accelerators temporarily in a mdi application Pin
Adam Roderick J23-Dec-09 17:23
Adam Roderick J23-Dec-09 17:23 
QuestionFindFirstChangeNotification Pin
Still learning how to code23-Dec-09 11:20
Still learning how to code23-Dec-09 11:20 
AnswerRe: FindFirstChangeNotification Pin
Garth J Lancaster23-Dec-09 13:19
professionalGarth J Lancaster23-Dec-09 13:19 
GeneralRe: FindFirstChangeNotification Pin
Still learning how to code23-Dec-09 22:23
Still learning how to code23-Dec-09 22:23 
GeneralRe: FindFirstChangeNotification Pin
Garth J Lancaster23-Dec-09 22:38
professionalGarth J Lancaster23-Dec-09 22:38 
AnswerRe: FindFirstChangeNotification Pin
Garth J Lancaster23-Dec-09 23:02
professionalGarth J Lancaster23-Dec-09 23:02 
GeneralRe: FindFirstChangeNotification Pin
Still learning how to code24-Dec-09 3:49
Still learning how to code24-Dec-09 3:49 
GeneralRe: FindFirstChangeNotification Pin
Garth J Lancaster24-Dec-09 11:04
professionalGarth J Lancaster24-Dec-09 11:04 
GeneralRe: FindFirstChangeNotification Pin
Still learning how to code24-Dec-09 20:27
Still learning how to code24-Dec-09 20:27 
QuestionWindows coordinate system different in US and European version Pin
Denny10123-Dec-09 11:02
Denny10123-Dec-09 11:02 
AnswerRe: Windows coordinate system different in US and European version Pin
Nelek23-Dec-09 23:30
protectorNelek23-Dec-09 23:30 
GeneralRe: Windows coordinate system different in US and European version Pin
Denny10125-Dec-09 9:45
Denny10125-Dec-09 9:45 
GeneralRe: Windows coordinate system different in US and European version Pin
Nelek27-Dec-09 22:16
protectorNelek27-Dec-09 22:16 

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.