I need to write application which start automatically Skype and then, if user remembered his username and password, make a call to particular other user. I've already made the first step, I know how to start Skype.
RegistryKey skype = Registry.CurrentUser.OpenSubKey(@"Software\Skype\Phone");
string skypePath="";
if (skype != null && skype.GetValue("SkypePath") != null)
skypePath=skype.GetValue("SkypePath").ToString();
System.Diagnostics.Process.Start(skypePath);
But I don't know how can i control that application and make a call. Maybe you can give me some tips what can I do? I can just add, that I can't use Skype API, because I can't ask user for nickname and password.