Hi
I have a thread that does many calculation and i'd like to view each calculation result in my form synchronously. how can i do?
Nick Malik - 03 Aug 2004 15:30 GMT
why not have your form subscribe to an event from your calculation class.
When your calculation class creates an answer, it fires an event with
information about the calculation. The form picks up the event, places the
information into a visible field, and returns.
Caveat: I have not tried this.
--- Nick
> Hi
> I have a thread that does many calculation and i'd like to view each calculation result in my form synchronously. how can i do?
jwallison - 05 Aug 2004 01:23 GMT
> Hi
> I have a thread that does many calculation and i'd like to view each calculation result in my form synchronously. how can i do?
===========================
I'm not sure what you mean by "view...synchronously", but see the following
MSDN article:
"Walkthrough: Authoring a Simple Multithreaded Component with Visual C#"

Signature
Regards,
Jim Allison
jwallison.1@digitalcollimation.com
(de-mung by removing '.1')