What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [vb.net] Dlls

[vb.net] Dlls
Author: Message:
deAd
Scripting Contest Winner
*****

Avatar

Posts: 1060
Reputation: 28
– / Male / Flag
Joined: Jan 2006
O.P. [vb.net] Dlls
I posted before, but now I think I've gotten somewhere. However, I'm still having problems. After created a dll in vb.net, I can't seem to import it. Here is the entire contents of the dll (note that I found it on MSDN):
code:
<ComClass(Class1.ClassId, Class1.InterfaceId, Class1.EventsId)> _
Public Class Class1
    ' Use the Region directive to define a section named COM Guids.
#Region "COM GUIDs"
    ' These GUIDs provide the COM identity for this class
    ' and its COM interfaces. You can generate
    ' these guids using guidgen.exe
    Public Const ClassId As String = "7666AC25-855F-4534-BC55-27BF09D49D46"
    Public Const InterfaceId As String = "54388137-8A76-491e-AA3A-853E23AC1217"
    Public Const EventsId As String = "EA329A13-16A0-478d-B41F-47583A761FF2"
#End Region

    Public Sub New()
        MyBase.New()
    End Sub

    Function AddNumbers(ByVal X As Integer, ByVal Y As Integer)
        AddNumbers = X + Y
    End Function
End Class

Then I've registered it in the DotNetFiles tag, and used this code:
code:
var e = new ActiveXObject('ClassLibrary1.Class1');
But I always get:
quote:
Error: Automation server can't create object.
       Line: 3. Code: -2146827859.

:S:S
07-12-2006 09:20 PM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[vb.net] Dlls - by deAd on 07-12-2006 at 09:20 PM
RE: [vb.net] Dlls - by Ezra on 07-12-2006 at 09:35 PM
RE: [vb.net] Dlls - by deAd on 07-12-2006 at 09:38 PM
RE: RE: [vb.net] Dlls - by Ezra on 07-12-2006 at 10:38 PM
RE: [vb.net] Dlls - by Chestah on 07-12-2006 at 11:47 PM
RE: [vb.net] Dlls - by deAd on 07-13-2006 at 12:11 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On