0

Possible Duplicate:
What’s a good, if any, .NET Windows automation library?

I am trying to call third party app using C#

var Proc = new System.Diagnostics.Process();
Proc.StartInfo.FileName = "C:\\Program Files (x86)\\Skype\\Phone\\Skype.exe";

However I want to fill username and password using c# code and to hit login using code.

Any idea?

Community
  • 1
  • 1
  • Just google it. "Skype API c#" Examples [1](http://stackoverflow.com/questions/1259923/implementation-of-skype-api), [2](http://www.codeproject.com/Articles/330778/Skypekit-NET), [3](http://archive.msdn.microsoft.com/SEHE), etc. – Algirdas Jan 13 '13 at 17:15
  • 1
    Refer to this link - http://stackoverflow.com/questions/5419234/skype-login-from-c-sharp-form – Rohit Vats Jan 13 '13 at 17:16
  • don't actually want to call skype using c#, skype is just used as example. but it is needed for another windows app – user1974500 Jan 13 '13 at 17:18
  • It may surprise you to learn - there's no *standard* way that login credentials are passed between applications. If you've got a *specific* application, you need to give details of that application. – Damien_The_Unbeliever Jan 13 '13 at 17:21
  • I understand there is no standard way. But i have an application built by another developer and it can be used to login to any windows app using that. I am just looking for how we can achieve that using c# – user1974500 Jan 13 '13 at 17:25
  • I can't reconcile the comment "I understand there is no standard way" with your other queries, where you're asking for us to give information in a generic, non-specific manner. – Damien_The_Unbeliever Jan 13 '13 at 17:29
  • If you think its no standard way for you. then its fine. But in programming anything can be achieved. Let me know if you don't agree. – user1974500 Jan 13 '13 at 17:31
  • Also that is just a small application which is built by a programmer in our area. – user1974500 Jan 13 '13 at 17:35

0 Answers0