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.

link|improve this question

79% accept rate
Have you done any research? WCF comes to mind. – M.Babcock Feb 3 at 2:12
@Jack, please check if my edit/re-tagging matches what you asking. Note that it may be good idea to state your overall goal as there are much better ways of communicating between processes. – Alexei Levenkov Feb 3 at 2:15
web/windows/wpf? – Brian Mains Feb 3 at 2:16
Can you explain more, what this has to do with ui automation? – zespri Feb 3 at 2:17
@zespri, This is how I read - "I want set the value of this Combobox from my application", could be totally off. Should not have put it in it I guess - removing till Jack is back... – Alexei Levenkov Feb 3 at 2:20
show 1 more comment
feedback

4 Answers

up vote 3 down vote accepted

you can use a number of technologies.... none are super simple.

  • Sockets
  • MSMQ
  • Named Pipes
  • WCF ( which wraps the three above, and other techniques, can be a bit fiddly to get working)
  • DCOM
  • Windows "SendMessage"
  • Files
  • Shared Memory
link|improve this answer
1  
You forgot named pipes which WCF also wraps. – M.Babcock Feb 3 at 2:17
Oh yes! thanks! – Keith Nicholas Feb 3 at 2:19
feedback

In your case, there are two ways:

  1. RPC, the preferred way. the 'other' app should expose RPC API, you the app can invoke and communicate with the 'other' app;
  2. UI Automation, the bad way. You can use Windows API to get a handle of the ComboBox in the 'other' app, and send key stroke event to stimulate human interaction. But it is not reliable. E.g. you cannot lock your screen when the app is running, or you cannot stimulate the action.
link|improve this answer
You can access Win32 API to Block Input which disables keyboard and mouse input to prevent user interaction – jordanhill123 Feb 3 at 2:26
feedback

You need to learn and use Windows Communication Foundation. Have a look at MSDN article - What Is Windows Communication Foundation?

link|improve this answer
feedback

Some code samples can be found here: http://1code.codeplex.com/wikipage?title=IRPC

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.