Sending commands to a worker thread from a form control???

  • Thread starter Thread starter Ole
  • Start date Start date
O

Ole

When updating a form control from a worker thread there is BeginInvonke, but
what if I wish to send information to a worker thread from e.g. a textBox on
the form - what is the correct way to do?

Thanks,
Ole
 
You have a few options: global variables, named events, message queues,
memory mapped files, and probably a few others.

-Chris
 
Back
Top