Posted By:
Alex_Chaffee
Posted On:
Monday, July 23, 2001 12:09 PM
If the main thread has quit, then it can't receive any events.
Probably you will register some other object as a listener. This object will have its event handler methods invoked from inside the DataReceiver thread. If you don't want this, then spawn another thread to do the invocation from inside your DataReceiver object.
Sounds like you may need a refresher course on thread basics.