Click here to Skip to main content
15,887,477 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Converting from Visual Studio 6 to Studio 2005 Pin
Malli_S21-Feb-06 2:45
Malli_S21-Feb-06 2:45 
Questiontemplate class test Pin
Russell'21-Feb-06 0:35
Russell'21-Feb-06 0:35 
AnswerRe: template class test Pin
Lim Bio Liong21-Feb-06 1:08
Lim Bio Liong21-Feb-06 1:08 
GeneralRe: template class test Pin
Michael Dunn21-Feb-06 1:46
sitebuilderMichael Dunn21-Feb-06 1:46 
GeneralRe: template class test Pin
Russell'21-Feb-06 1:59
Russell'21-Feb-06 1:59 
GeneralRe: template class test Pin
Michael Dunn21-Feb-06 2:32
sitebuilderMichael Dunn21-Feb-06 2:32 
QuestionSocket and thread Pin
mehrdadov20-Feb-06 23:10
mehrdadov20-Feb-06 23:10 
AnswerRe: Socket and thread Pin
khan++21-Feb-06 0:41
khan++21-Feb-06 0:41 
Your question does not seem to be very clear.
How do you create the CSocket object? If it is like:
CSocket sock;<br />
...Initialize it etc.<br />
CreateThread(... , (void*)&sock...); //etc

Then it is not going to work, because the object is being created on the stack and will be destroyed when the calling function exits.
Create it on the heap etc:
CSocket* pSock;<br />
pSock = new CSocket;<br />
...Initialize it etc.

Then send it to the thread.
Hope that helps.


this is this.
AnswerRe: Socket and thread Pin
Michael Dunn21-Feb-06 1:49
sitebuilderMichael Dunn21-Feb-06 1:49 
QuestionWinsock file transfering on single PC with 2 NICs Pin
ttoh20-Feb-06 22:35
ttoh20-Feb-06 22:35 
AnswerRe: Winsock file transfering on single PC with 2 NICs Pin
khan++21-Feb-06 0:54
khan++21-Feb-06 0:54 
QuestionSYSTEM TIME ZONE &#8211; PROBLEM Pin
shadrach_india20-Feb-06 22:14
shadrach_india20-Feb-06 22:14 
AnswerRe: SYSTEM TIME ZONE &#8211; PROBLEM Pin
khan++21-Feb-06 1:01
khan++21-Feb-06 1:01 
GeneralRe: SYSTEM TIME ZONE – PROBLEM Pin
ThatsAlok22-Feb-06 3:24
ThatsAlok22-Feb-06 3:24 
GeneralRe: SYSTEM TIME ZONE – PROBLEM Pin
khan++22-Feb-06 4:00
khan++22-Feb-06 4:00 
QuestionHow can I save the owndraw content in the CListView as a html file? Pin
runningfeng20-Feb-06 22:09
runningfeng20-Feb-06 22:09 
AnswerRe: How can I save the owndraw content in the CListView as a html file? Pin
Rage20-Feb-06 22:59
professionalRage20-Feb-06 22:59 
QuestionError in GetBuffer Pin
Ganesh_T20-Feb-06 21:51
Ganesh_T20-Feb-06 21:51 
AnswerRe: Error in GetBuffer Pin
Rage20-Feb-06 23:01
professionalRage20-Feb-06 23:01 
GeneralRe: Error in GetBuffer Pin
Ganesh_T20-Feb-06 23:26
Ganesh_T20-Feb-06 23:26 
QuestionCListCtrl Pin
Hamid_RT20-Feb-06 20:43
Hamid_RT20-Feb-06 20:43 
AnswerRe: CListCtrl Pin
Neelesh K J Jain21-Feb-06 0:30
Neelesh K J Jain21-Feb-06 0:30 
QuestionCTRL + TAB.. Who handle this? Pin
Aravind Badrinath Krishnan20-Feb-06 20:42
Aravind Badrinath Krishnan20-Feb-06 20:42 
AnswerRe: CTRL + TAB.. Who handle this? Pin
-Dy22-Feb-06 2:29
-Dy22-Feb-06 2:29 
Questionsave CDC as Bitmap Pin
tbrake20-Feb-06 20:26
tbrake20-Feb-06 20:26 

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.