Click here to Skip to main content
15,920,633 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: CListCtrl: Automatic Scroll Down Pin
romuzu15-Jan-06 22:38
romuzu15-Jan-06 22:38 
GeneralRe: CListCtrl: Automatic Scroll Down Pin
Rajesh R Subramanian18-Jan-06 23:45
professionalRajesh R Subramanian18-Jan-06 23:45 
QuestionActiveX control popping up a modal dialog Pin
sps-itsec4613-Jan-06 2:17
sps-itsec4613-Jan-06 2:17 
AnswerRe: ActiveX control popping up a modal dialog Pin
sps-itsec4616-Jan-06 5:15
sps-itsec4616-Jan-06 5:15 
QuestionProblem when inserting items in CListCtrl Icon view Pin
Naveen13-Jan-06 1:42
Naveen13-Jan-06 1:42 
AnswerRe: Problem when inserting items in CListCtrl Icon view Pin
Rajesh R Subramanian13-Jan-06 18:58
professionalRajesh R Subramanian13-Jan-06 18:58 
GeneralRe: Problem when inserting items in CListCtrl Icon view Pin
Naveen13-Jan-06 22:11
Naveen13-Jan-06 22:11 
Questiontemplate Visual Studio 6 to Visual Studio .NET Pin
patgo13-Jan-06 0:54
patgo13-Jan-06 0:54 
GeneralRe: template Visual Studio 6 to Visual Studio .NET Pin
toxcct13-Jan-06 1:07
toxcct13-Jan-06 1:07 
GeneralRe: template Visual Studio 6 to Visual Studio .NET Pin
Rajesh R Subramanian13-Jan-06 1:16
professionalRajesh R Subramanian13-Jan-06 1:16 
GeneralRe: template Visual Studio 6 to Visual Studio .NET Pin
patgo13-Jan-06 1:17
patgo13-Jan-06 1:17 
GeneralRe: template Visual Studio 6 to Visual Studio .NET Pin
Stephen Hewitt14-Jan-06 14:50
Stephen Hewitt14-Jan-06 14:50 
GeneralRe: template Visual Studio 6 to Visual Studio .NET Pin
patgo15-Jan-06 22:16
patgo15-Jan-06 22:16 
GeneralRe: template Visual Studio 6 to Visual Studio .NET Pin
Stephen Hewitt15-Jan-06 22:44
Stephen Hewitt15-Jan-06 22:44 
QuestionAny module to encode and decode from bufferarray with a short time ? Pin
James Duy Trinh (VietDoor)13-Jan-06 0:37
James Duy Trinh (VietDoor)13-Jan-06 0:37 
QuestionCListCtrl: Automatic Scroll- Down Pin
romuzu13-Jan-06 0:27
romuzu13-Jan-06 0:27 
AnswerRe: CListCtrl: Automatic Scroll- Down Pin
Rajesh R Subramanian13-Jan-06 0:37
professionalRajesh R Subramanian13-Jan-06 0:37 
AnswerRe: CListCtrl: Automatic Scroll- Down Pin
khan++13-Jan-06 1:35
khan++13-Jan-06 1:35 
GeneralRe: CListCtrl: Automatic Scroll- Down Pin
Rajesh R Subramanian13-Jan-06 1:48
professionalRajesh R Subramanian13-Jan-06 1:48 
QuestionCan i pass MFC Objects in between thread ? Pin
vikas amin12-Jan-06 23:20
vikas amin12-Jan-06 23:20 
AnswerRe: Can i pass MFC Objects in between thread ? Pin
Owner drawn12-Jan-06 23:31
Owner drawn12-Jan-06 23:31 
AnswerRe: Can i pass MFC Objects in between thread ? Pin
Stephen Hewitt12-Jan-06 23:41
Stephen Hewitt12-Jan-06 23:41 
MFC objects can not be passed between threads. If you want to do this you have to extract the raw handle from the object in the first thread and use it to create another object in the second thread. For example:

In thread 1:
------------
CDC DC;
// Stuff happens here.
PassObjectToSecondThread(DC.m_hDC);


In thread 2:
------------
HDC hDC = GetHandleFromFirstThread();
CDC* pDC = CDC::FromHandle(hDC);
// Use "pDC" here.

see http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore/html/_core_Multithreading.3a_.Programming_Tips.asp for details.

Steve
AnswerRe: Can i pass MFC Objects in between thread ? Pin
Roger Stoltz12-Jan-06 23:45
Roger Stoltz12-Jan-06 23:45 
AnswerRe: Can i pass MFC Objects in between thread ? Pin
Prakash Nadar12-Jan-06 23:45
Prakash Nadar12-Jan-06 23:45 
AnswerRe: Can i pass MFC Objects in between thread ? Pin
ThatsAlok15-Jan-06 18:19
ThatsAlok15-Jan-06 18:19 

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.