Is there a way that I can have my programs call methods within each other. For example could I have program 1 tell program 2 to run a certain method when a button is clicked in program 1? How would I do this?
Thanks
John
Printable View
Is there a way that I can have my programs call methods within each other. For example could I have program 1 tell program 2 to run a certain method when a button is clicked in program 1? How would I do this?
Thanks
John
Google Remoting...
What do you mean by this? Forms bet. Forms? or different applications?Quote:
Originally Posted by JohnRChick
like between different copies of the same .exe..... so like one copy of my program could tell the other to run a certain method, etc
Yah www.codeproject.com/dotnet/dotnet.asp
Click on this link i sure you will easy understand this codes.
Raghib Khesal
KGCS
raghib.netfirms.com
You might want to check out
interfaces and reflection.
With reflection, you can call specific methods from a loaded exe or dll during runtime and this can be done dynamically as well.
I myself am new to the concept of reflection, but you can do some kewl stuff with it, including creating dynamic code!
bgard68