4

I will like to use the skype dll classes in visual studio. The link where I have downloaded skype4com.dll is in here. When I try to add a reference to that dll I get:

enter image description here

I tried following this solution but the link is broken.

edit

I have also tried following this example:

but when I open the project visual studio cannot load:

enter image description here

Community
  • 1
  • 1
Tono Nam
  • 34,064
  • 78
  • 298
  • 470
  • Related tutorial: http://www.codeproject.com/KB/cs/SEHE.aspx – M.Babcock Jan 16 '12 at 04:05
  • I have tried that example but cannot use the library... Take a look at my edit. Thanks for the help – Tono Nam Jan 16 '12 at 04:11
  • Try looking at this [MSDN Skype Event Handler Example](http://archive.msdn.microsoft.com/SEHE/Release/ProjectReleases.aspx?ReleaseId=1871), they have example code and links to download the Skype4COM.dll. – Mark Hall Jan 16 '12 at 04:06

1 Answers1

4

Has the COM DLL been registered? How are you setting up your reference? In order to use your COM reference you need to select it from the COM tab in the Add Reference dialog rather than selecting the DLL file from the Browse tab.

M.Babcock
  • 18,753
  • 6
  • 54
  • 84
  • 1
    Exactly I needed to register the dll. I found the answer at: http://donchevp.blogspot.com/2008/08/skype4com-lib-how-to-register-skype.html – Tono Nam Jan 16 '12 at 04:21