Click here to Skip to main content
15,900,589 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: error 2143 Pin
ajit00914-May-06 1:17
ajit00914-May-06 1:17 
GeneralRe: error 2143 Pin
ThatsAlok14-May-06 20:32
ThatsAlok14-May-06 20:32 
GeneralRe: error 2143 Pin
ajit00914-May-06 20:40
ajit00914-May-06 20:40 
GeneralRe: error 2143 Pin
ThatsAlok14-May-06 21:08
ThatsAlok14-May-06 21:08 
GeneralRe: error 2143 Pin
ajit00914-May-06 21:21
ajit00914-May-06 21:21 
GeneralRe: error 2143 Pin
ThatsAlok14-May-06 22:51
ThatsAlok14-May-06 22:51 
QuestionQuestion about AfxBeginThread(...) Pin
altfell13-May-06 21:17
altfell13-May-06 21:17 
AnswerRe: Question about AfxBeginThread(...) Pin
Hamid_RT13-May-06 22:10
Hamid_RT13-May-06 22:10 
try this please
<br />
void CMyAnswer::RunThread()<br />
{<br />
CWinThread* m_Thread;<br />
<br />
m_Thread=AfxBeginThread ( MyThread, this,THREAD_PRIORITY_NORMAL,0,CREATE_SUSPENDED);<br />
	if (m_Thread != NULL)<br />
		m_Thread->ResumeThread();<br />
}<br />
<br />
<br />
UINT MyThread( LPVOID pv )<br />
{<br />
CMyAnswer* m_Answer = (CMyAnswer*) pv;<br />
<br />
    m_Answer->Modify();<br />
<br />
    return 0;<br />
}<br />
<br />
void CMyAnswer::Modify()<br />
{<br />
}<br />
 <br />



WhiteSky


GeneralRe: Question about AfxBeginThread(...) Pin
altfell14-May-06 0:32
altfell14-May-06 0:32 
AnswerRe: Question about AfxBeginThread(...) Pin
Ryan Binns13-May-06 22:16
Ryan Binns13-May-06 22:16 
GeneralRe: Question about AfxBeginThread(...) Pin
altfell14-May-06 0:34
altfell14-May-06 0:34 
AnswerRe: Question about AfxBeginThread(...) Pin
Michael Dunn14-May-06 13:08
sitebuilderMichael Dunn14-May-06 13:08 
QuestionpVideo conference Pin
ljeganathan13-May-06 19:33
ljeganathan13-May-06 19:33 
QuestionHow to get deleted files Pin
sp_ranjan13-May-06 10:02
sp_ranjan13-May-06 10:02 
AnswerRe: How to get deleted files Pin
Hamid_RT13-May-06 16:35
Hamid_RT13-May-06 16:35 
GeneralRe: How to get deleted files Pin
sp_ranjan14-May-06 18:22
sp_ranjan14-May-06 18:22 
QuestionMORTGAGE PROGRAM Pin
DARJA- mortgage program13-May-06 9:17
DARJA- mortgage program13-May-06 9:17 
AnswerRe: MORTGAGE PROGRAM Pin
PJ Arends13-May-06 10:08
professionalPJ Arends13-May-06 10:08 
GeneralRe: MORTGAGE PROGRAM Pin
DARJA- mortgage program13-May-06 10:33
DARJA- mortgage program13-May-06 10:33 
QuestionHow to check cell int he MFC Grid Ctrl state when it is checkbox? Pin
mwybranczyk13-May-06 7:40
mwybranczyk13-May-06 7:40 
AnswerRe: How to check cell int he MFC Grid Ctrl state when it is checkbox? Pin
PJ Arends13-May-06 8:44
professionalPJ Arends13-May-06 8:44 
GeneralRe: How to check cell int he MFC Grid Ctrl state when it is checkbox? Pin
mwybranczyk13-May-06 9:23
mwybranczyk13-May-06 9:23 
GeneralRe: How to check cell int he MFC Grid Ctrl state when it is checkbox? Pin
PJ Arends13-May-06 9:55
professionalPJ Arends13-May-06 9:55 
QuestionUsing DrawImage(Image *, 0, 0) - Picture is too big Pin
1980soyo13-May-06 5:34
1980soyo13-May-06 5:34 
AnswerRe: Using DrawImage(Image *, 0, 0) - Picture is too big Pin
PJ Arends13-May-06 8:32
professionalPJ Arends13-May-06 8:32 

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.