Windows programming

Moderators: None (Apply to moderate this forum)
Number of threads: 3670
Number of posts: 9122

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
ListBox control from seperate thread Posted by thomasFromUK on 21 Oct 2005 at 5:25 AM
I am performing initialization of a listbox in a dialog based MFC program. The initialization code is running in a seperate thread and I'm not sure whether I can safely invoke the control variable for the listbox (such as AddString( LPCTSTR ) ) from this seperate thread.

In my code I create the thread in the CDialog::OnInitDialog() function and pass it a 'this' pointer as its lpParameter. Thus the thread can invoke all the control variables within the CDialog class. Is this a bit of a hack ? Should I be using SendMessage() to communicate with the listbox ?

I appreciate any advice.

Tom
Report
Re: ListBox control from seperate thread Posted by tom_sw on 24 Oct 2005 at 11:18 AM
: I am performing initialization of a listbox in a dialog based MFC program. The initialization code is running in a seperate thread and I'm not sure whether I can safely invoke the control variable for the listbox (such as AddString( LPCTSTR ) ) from this seperate thread.
:
: In my code I create the thread in the CDialog::OnInitDialog() function and pass it a 'this' pointer as its lpParameter. Thus the thread can invoke all the control variables within the CDialog class. Is this a bit of a hack ? Should I be using SendMessage() to communicate with the listbox ?
:
: I appreciate any advice.
:
: Tom
:
Sounds like it will be OK. I have several applications where I access internals of a particular object from a thread by passing the this pointer into the thread on creation. The only problem you could have is if other threads are simultaneously accessing the same object. You will probably want to put the code that accesses that box with a Critical section and control access with a call to WaitForSingleLock or something siilar.



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.