Problem with ansynchronous processing.

  • Thread starter Thread starter bobo
  • Start date Start date
B

bobo

As in platform in SDK, I can write another thread and interact with the
application window using postmessage and sendmessage.
But in .net framework, there's not methods like these, so how can I make
these two threads( the windows thread and worker thread work together)
Is there something like the 'message loop'?
 
As in platform in SDK, I can write another thread and interact with the
application window using postmessage and sendmessage.
But in .net framework, there's not methods like these, so how can I make
these two threads( the windows thread and worker thread work together)
Is there something like the 'message loop'?

Control.Invoke() is basicly a PostMessage wrapper that lets you invoke
a method on the UI thread. And yes there's still a message loop
running.



Mattias
 
Back
Top