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

pParam ...
Author: Message:
Orkblutt
Junior Member
**

Avatar

Posts: 74
Joined: Aug 2004
O.P. RE: pParam ...
Oki!
Thank you!
I want to display a dialog box :^)

I'm proceding like that... but it's not the good method :(
quote:

LRESULT CALLBACK MyDlg(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
   switch (message)
   {
        case WM_INITDIALOG:
           return TRUE;
        case WM_COMMAND:
            if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL)
            {
                EndDialog(hDlg, LOWORD(wParam));
                return TRUE;
            }
         break;
    }
    return FALSE;
}
....
....
....
...
if(stricmp(sCommand, "/xdialog") == 0)
{       
   HWND hWnd=GetActiveWindow();
   HINSTANCE hInst = (HINSTANCE)GetModuleHandle(NULL);         
   DialogBox(hInst , (LPCTSTR)IDD_DIALOG1, hWnd, (DLGPROC)MyDlg);
   return TRUE;
}




Could you help me please ?


       

This post was edited on 09-01-2004 at 07:25 PM by WDZ.
08-30-2004 01:58 AM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
pParam ... - by Orkblutt on 08-28-2004 at 02:25 AM
RE: pParam ... - by Mnjul on 08-28-2004 at 04:01 AM
RE: pParam ... - by Orkblutt on 08-28-2004 at 04:20 AM
RE: pParam ... - by Mnjul on 08-28-2004 at 04:34 AM
RE: pParam ... - by Orkblutt on 08-28-2004 at 05:01 AM
RE: pParam ... - by Mnjul on 08-28-2004 at 05:39 AM
RE: pParam ... - by Yousef on 08-28-2004 at 09:13 AM
RE: pParam ... - by RaceProUK on 08-28-2004 at 01:36 PM
RE: pParam ... - by Orkblutt on 08-29-2004 at 06:20 AM
RE: pParam ... - by RaceProUK on 08-29-2004 at 10:21 AM
RE: pParam ... - by Orkblutt on 08-30-2004 at 01:58 AM
RE: pParam ... - by RaceProUK on 08-30-2004 at 01:58 PM
RE: pParam ... - by Orkblutt on 08-31-2004 at 12:57 AM
RE: pParam ... - by RaceProUK on 08-31-2004 at 09:21 AM
RE: pParam ... - by Orkblutt on 08-31-2004 at 10:09 AM
RE: pParam ... - by RaceProUK on 08-31-2004 at 10:58 AM
RE: pParam ... - by Orkblutt on 08-31-2004 at 03:18 PM
RE: pParam ... - by RaceProUK on 08-31-2004 at 09:50 PM
RE: pParam ... - by Orkblutt on 09-01-2004 at 12:34 AM
RE: pParam ... - by RaceProUK on 09-01-2004 at 09:23 AM
RE: pParam ... - by Orkblutt on 09-01-2004 at 07:15 PM
RE: pParam ... - by RaceProUK on 09-01-2004 at 09:48 PM
RE: pParam ... - by Orkblutt on 09-01-2004 at 10:04 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