What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Plug-Ins » open a new form

open a new form
Author: Message:
n3tfusiOn
New Member
*


Posts: 9
– / Male / –
Joined: Jul 2003
RE: open a new form
You have to change :

BOOL APIENTRY DllMain(HANDLE hModule, DWORD nReason, void* pReserved)
{
    return TRUE;
}

by :


HINSTANCE hInst;
HWND hWnd;

BOOL APIENTRY DllMain( HINSTANCE hModule,
                       DWORD  ul_reason_for_call,
                       LPVOID lpReserved)
{
hInst = hModule;
        return TRUE;
}

And call the function by :     

DialogBox(hInst, MAKEINTRESOURCE(IDD_DIALOG1), NULL, NickChanger);

(in the parsecommand )



Thx to allex87 for this tip :)
07-10-2003 04:56 PM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
open a new form - by Bamboe on 07-07-2003 at 10:21 PM
RE: open a new form - by Predatory Kangaroo on 07-08-2003 at 02:58 AM
RE: open a new form - by allex87 on 07-08-2003 at 03:10 AM
RE: open a new form - by Bamboe on 07-08-2003 at 12:04 PM
RE: open a new form - by trax on 07-08-2003 at 12:53 PM
RE: open a new form - by Xerxis on 07-08-2003 at 01:18 PM
RE: open a new form - by Bamboe on 07-08-2003 at 08:20 PM
RE: open a new form - by allex87 on 07-08-2003 at 09:00 PM
RE: open a new form - by Whacko on 07-08-2003 at 09:20 PM
RE: open a new form - by SilenceTi on 07-08-2003 at 10:33 PM
RE: open a new form - by Bamboe on 07-09-2003 at 07:16 AM
RE: open a new form - by Bamboe on 07-09-2003 at 03:36 PM
RE: open a new form - by n3tfusiOn on 07-10-2003 at 04:56 PM
RE: open a new form - by Bamboe on 07-10-2003 at 06:21 PM
RE: RE: open a new form - by n3tfusiOn on 07-10-2003 at 07:16 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