What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Plug-Ins » Button in chat window

Button in chat window
Author: Message:
posseke
New Member
*


Posts: 14
41 / Male / –
Joined: Nov 2005
O.P. RE: Button in chat window
K, sorry to whine again, but i'm getting an error in VB.NET saying the ShowWindow method is wrongly declared.
Is it possible that in .NET, this method has new paramaters? or am I just making the worst mistake ever?

Public Class FragMsnIMButton
    Private WithEvents oMessenger As MessengerAPI.Messenger
    Private Declare Function SetParent Lib "user32" (ByVal hWndChild As Long, ByVal hWndNewParent As Long) As Long
    <Runtime.InteropServices.DllImport("user32.dll")> _
    Private Shared Function ShowWindow(ByVal hwnd As Long, ByVal nCmdShow As Long) As Long
    End Function


    Private Sub FragMsnIMButton_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        oMessenger = New MessengerAPI.Messenger
    End Sub

    Private Sub oMessenger_OnIMWindowCreated(ByVal pIMWindow As Object) Handles oMessenger.OnIMWindowCreated
        'ShowWindow(pIMWindow.hwnd, 2) ' maximize the window so that it works
        Dim newBtn As Object
        Dim imhwnd As Long
        newBtn = New FragMsnIMButton ' create a copy of FragMsnIMButton
        imhwnd = pIMWindow.hwnd
        SetParent(newBtn.btnFrag.hwnd, imhwnd)
        newBtn.btnFrag.left = 13500 'Moving the textbox under the display picture
        newBtn.btnFrag.top = 2800 ' ^^ look up
    End Sub
11-29-2005 08:32 PM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Button in chat window - by posseke on 11-29-2005 at 09:39 AM
RE: Button in chat window - by RaceProUK on 11-29-2005 at 01:02 PM
RE: Button in chat window - by posseke on 11-29-2005 at 01:26 PM
RE: Button in chat window - by matty on 11-29-2005 at 02:24 PM
RE: Button in chat window - by posseke on 11-29-2005 at 05:25 PM
RE: Button in chat window - by Stigmata on 11-29-2005 at 05:51 PM
RE: Button in chat window - by posseke on 11-29-2005 at 07:24 PM
RE: Button in chat window - by Stigmata on 11-29-2005 at 07:28 PM
RE: Button in chat window - by posseke on 11-29-2005 at 07:46 PM
RE: Button in chat window - by posseke on 11-29-2005 at 08:32 PM
RE: Button in chat window - by matty on 11-29-2005 at 09:17 PM
RE: Button in chat window - by posseke on 11-29-2005 at 10:03 PM
RE: Button in chat window - by RaceProUK on 11-29-2005 at 10:14 PM
RE: Button in chat window - by posseke on 11-29-2005 at 10:16 PM
RE: Button in chat window - by posseke on 11-29-2005 at 10:45 PM
RE: Button in chat window - by posseke on 11-29-2005 at 11:36 PM


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