Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows MSN Messenger > Messenger Programming ActiveX Dll

Reply
Thread Tools Display Modes

Messenger Programming ActiveX Dll

 
 
Raymond
Guest
Posts: n/a

 
      11-27-2008
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


 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Programming for MSN Messenger Fidencio Monroy Windows MSN Messenger 4 12-05-2006 05:53 PM
Re: DDK programming! Windows Vista Drivers 1 07-30-2004 02:29 AM
Re: DDK programming! Maxim S. Shatskih Windows Vista Drivers 0 07-29-2004 02:19 PM
Getting started with C++ messenger programming? Bryant Fong Windows MSN Messenger 2 05-10-2004 09:34 PM
programming with msn 6.0 Andrew Windows MSN Messenger 0 07-28-2003 03:50 PM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59