How to invoke Skype for calling a number from C# winforms?
Filed in C#, Code Snippets on Aug.05, 2009
You can use Skype API which I will say a bulky way. Here is a simple method:
System.Diagnostics.Process.Start("callto:+919846089033");
It does not need to be a phone number. It can be a Skype name also.
System.Diagnostics.Process.Start("callto:ninethsense");
Note that this is not only for Skype but this callto:// will invoke any associated default calling program. It can beNet Meeting also.
Related posts:























Leave a Reply
You must be logged in to post a comment.