i'm new in VB.NET programming and now I trying to catch the new Chat Message event, i post the code
CODE
Public Class Form1
Private WithEvents m_skype As SKYPEAPILib.Access 'SKYPE4COMLib.ChatMessage
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
m_skype = New SKYPEAPILib.Access ############
m_skype.Connect()
end sub
Private Sub m_skype_MessageReceive(ByVal SkypeMessage As SKYPEAPILib.Message) Handles m_skype.MessageReceived
MsgBox(SkypeMessage.Body)
End Sub
I add in references interop.SKYPEAPILib and SKYPE4COMLib. I register with regsvr32 just SKYPE4COMLib because regsvr32 of interop.SKYPEAPILib give me an error
c:\interop.SkypeApiLib was charge, but the start point DLLRegisterServer was no found (sorry for the translate)
When run, VS give me an error on # line, like this:
Recovery the class factory COM for the componenet with CLSID {D9C30395-F423-48C1-88F7-6EA78F2026B4} not succeed for the error: 80040154.
How can I solve the trouble?
Very Thanks and sorry for the translate.