Multi process application

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I'm trying to create an C# from working with e.g. multiple panels or
sub-forms. Each of these forms/panels must be updated by different processes.
Is that possible and if so, how do I do it ?
 
Søe said:
Hi,

I'm trying to create an C# from working with e.g. multiple panels or
sub-forms. Each of these forms/panels must be updated by different
processes.
Is that possible and if so, how do I do it ?

Take a look at Remoting
James
 
All you would need to do is expose some sort of updating routine on the
panel. And then simply call that routine from your external processes.

--
Regards,
Alvin Bruney [MVP ASP.NET]

[Shameless Author plug]
The Microsoft Office Web Components Black Book with .NET
Now Available @ www.lulu.com/owc
Forth-coming VSTO.NET - Wrox/Wiley 2006
 
Back
Top