Check Status of CheckBox via Thread

nosh

New member
Joined
Aug 13, 2010
Messages
1
Programming Experience
3-5
Hi All
Can someone give me an example of checking the status of a CheckBox via a Thread.


Thanks
 
As with all controls, any access of a CheckBox must be done on the UI thread. Please provide a full and clear explanation of what you're trying to achieve. For future reference, assume that a single sentence will never be adequate to fully and clearly convey what you want to do to people who have no prior knowledge of your project.
 
Often you gather info from controls in UI thread and pass it to background task when starting it. It is less common that a worker thread depends on UI info that may change during the processing.
 
Back
Top