Reputation: 16724
I'm looking for an example code written in C# how do I the communication of my application with another application using. I have an another application that have an ComboBox. I want set the value of this Combobox from my application, using C# code.
Upvotes: 0
Views: 4590
Reputation: 26329
Some code samples can be found here: http://1code.codeplex.com/wikipage?title=IRPC
Upvotes: 0
Reputation: 11200
In your case, there are two ways:
Upvotes: 1
Reputation: 44316
you can use a number of technologies.... none are super simple.
Upvotes: 4
Reputation: 94653
You need to learn and use Windows Communication Foundation. Have a look at MSDN article - What Is Windows Communication Foundation?
Upvotes: 1