Does any one try to program VB6 ActiveX Dll to communicate with MSN
messenger?
I have no problem to create the EXE, but could not get it to work in web.
Here are some sample code:
code in VB6:
Public MSN As MessengerAPI.Messenger
Public Function SignIn()
Set MSN = New MessengerAPI.Messenger
MSN.AutoSignin
End Function
Public Function SignOut()
Set MSN = New MessengerAPI.Messenger
MSN.SignOut
End Function
Code in ASP:
Set msn=Server.CreateObject("MSNProject.MSNClass")
Call msn.SignOut
set msn = nothing
The dll created no problem, the problem is calling the function in the ASP.
any help?
Raymond
|