What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Plug-Ins » How Do I Make A Plug-in?

How Do I Make A Plug-in?
Author: Message:
Ezra
Veteran Member
*****

Avatar
Forgiveness is between them and God

Posts: 1960
Reputation: 31
37 / Male / Flag
Joined: Mar 2003
RE: How Do I Make A Plug-in?
Sorry for the double post btw...

I've been trying to make a vb plugin today, but I won't seem to work :S

Remember I don't know much of vb :P

code:
Public Function Initialize(ByVal nVersion As Long, ByVal sUserEmail As String, ByVal oMessenger As Object) As Boolean
    Initialize = True
End Function

Public Function Uninitialize()
End Function

Public Function Configure()
    MsgBox "Plugin van Ezra" + vbLf + "Author: Ezra", vbOKOnly, "Ezra"
End Function

Public Function GetPublishInfo(ByRef sPluginName As String, ByRef nCommandCount As Long, ByRef nTagCount As Long) As Boolean
    sPluginName = "Ezra's Plugin"
    nCommandCount = 1
    nTagCount = 0
   
    GetPublishInfo = True
End Function

Public Function GetPublishCommandInfo(ByVal nCommandIdx As Long, ByRef sName As String, ByRef sValue As String, ByRef sHelp As String)
    If (nCommandIdx = 1) Then
        sName = "Schrijf me naam"
        sValue = "xezra"
        sHelp = "Schrijf me naam"
    End If
End Function

Public Function ParseCommand(ByVal sCommand As String, ByVal sCommandArg As String, ByVal oConversationWnd As Object, ByRef sResult As String) As Boolean
        If (StrComp(LCase(sCommand), "/xezra", vbTextCompare) = 0) Then
        sResult = "Mijn naam is Ezra"
        ParseCommand = True
        Exit Function
    End If
End Function

[Image: 1-0.png]
             
07-14-2005 04:28 PM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
How Do I Make A Plug-in? - by ProblemWv Authority on 07-12-2005 at 04:19 PM
RE: How Do I Make A Plug-in? - by Ezra on 07-12-2005 at 04:20 PM
RE: How Do I Make A Plug-in? - by absorbation on 07-12-2005 at 04:26 PM
RE: How Do I Make A Plug-in? - by ProblemWv Authority on 07-12-2005 at 04:27 PM
RE: How Do I Make A Plug-in? - by absorbation on 07-12-2005 at 04:38 PM
RE: RE: How Do I Make A Plug-in? - by ProblemWv Authority on 07-12-2005 at 04:41 PM
RE: How Do I Make A Plug-in? - by Ezra on 07-12-2005 at 04:42 PM
RE: How Do I Make A Plug-in? - by ProblemWv Authority on 07-12-2005 at 04:46 PM
RE: How Do I Make A Plug-in? - by absorbation on 07-12-2005 at 04:53 PM
RE: How Do I Make A Plug-in? - by ProblemWv Authority on 07-12-2005 at 04:56 PM
RE: How Do I Make A Plug-in? - by Eljay on 07-12-2005 at 06:14 PM
RE: How Do I Make A Plug-in? - by absorbation on 07-12-2005 at 06:24 PM
RE: How Do I Make A Plug-in? - by Eljay on 07-12-2005 at 06:33 PM
RE: How Do I Make A Plug-in? - by Ezra on 07-12-2005 at 07:30 PM
RE: How Do I Make A Plug-in? - by suicidepyro1 on 07-13-2005 at 12:55 AM
RE: How Do I Make A Plug-in? - by ShawnZ on 07-13-2005 at 01:33 AM
RE: How Do I Make A Plug-in? - by dylan! on 07-13-2005 at 01:50 AM
RE: RE: How Do I Make A Plug-in? - by Ezra on 07-13-2005 at 06:11 PM
RE: How Do I Make A Plug-in? - by suicidepyro1 on 07-13-2005 at 02:47 AM
RE: How Do I Make A Plug-in? - by L. Coyote on 07-13-2005 at 03:40 AM
RE: How Do I Make A Plug-in? - by suicidepyro1 on 07-13-2005 at 03:42 AM
RE: How Do I Make A Plug-in? - by L. Coyote on 07-13-2005 at 03:45 AM
RE: How Do I Make A Plug-in? - by suicidepyro1 on 07-13-2005 at 03:45 AM
RE: How Do I Make A Plug-in? - by Ezra on 07-14-2005 at 04:28 PM
RE: How Do I Make A Plug-in? - by super-schaf on 07-16-2005 at 11:27 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