UTF.COM.CN

VC 6.0 中还可以这样创建对话框

作者:佚名 | 来源:网络 | 添加时间:2006-12-27 11:30:42 | 人气:1307

VC 6.0 中还可以这样创建对话框

#include "stdafx.h"
#include "resource.h"
#include

static unsigned char dlg_14[] =
{
0xc0,0x20,0xc8,0x80,0x00,0x00,0x00,0x00,
0x04,0x00,0x00,0x00,0x00,0x00,0xb4,0x00,0x39,
0x00,0x00,0x00,0x00,0x00,0x47,0x00,0x6f,
0x00,0x74,0x00,0x6f,0x00,0x20,0x00,0x6c,
0x00,0x69,0x00,0x6e,0x00,0x65,0x00,0x00,
0x00,0x08,0x00,0x4d,0x00,0x53,0x00,0x20,
0x00,0x53,0x00,0x68,0x00,0x65,0x00,0x6c,
0x00,0x6c,0x00,0x20,0x00,0x44,0x00,0x6c,
0x00,0x67,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x02,0x50,0x00,0x00,0x00,0x00,0x07,
0x00,0x09,0x00,0x32,0x00,0x0a,0x00,0xb0,
0x04,0xff,0xff,0x82,0x00,0x26,0x00,0x4c,
0x00,0x69,0x00,0x6e,0x00,0x65,0x00,0x20,
0x00,0x4e,0x00,0x75,0x00,0x6d,0x00,0x62,
0x00,0x65,0x00,0x72,0x00,0x3a,0x00,0x00,
0x00,0x00,0x00,0x80,0x00,0x81,0x50,0x00,
0x00,0x00,0x00,0x37,0x00,0x07,0x00,0x39,
0x00,0x0c,0x00,0x02,0x01,0xff,0xff,0x81,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,
0x00,0x01,0x50,0x00,0x00,0x00,0x00,0x07,
0x00,0x22,0x00,0x32,0x00,0x0e,0x00,0x01,
0x00,0xff,0xff,0x80,0x00,0x4f,0x00,0x4b,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x01,0x50,0x00,0x00,0x00,0x00,0x4e,
0x00,0x22,0x00,0x32,0x00,0x0e,0x00,0x02,
0x00,0xff,0xff,0x80,0x00,0x43,0x00,0x61,
0x00,0x6e,0x00,0x63,0x00,0x65,0x00,0x6c,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};

LRESULT CALLBACK DlgProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
int main(int argc, char* argv[])
{
HMODULE hModule = ::GetModuleHandle(NULL);
HINSTANCE hInst = hModule;
HRSRC hRsrc = ::FindResource(hInst, MAKEINTRESOURCE(IDD_DIALOG1), RT_DIALOG);
HGLOBAL hGlobal = ::LoadResource(hModule, hRsrc);
DialogBoxIndirectParam(hInst, (LPCDLGTEMPLATE)dlg_14, NULL, (DLGPROC)DlgProc, NULL);
return 0;
}

LRESULT CALLBACK DlgProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
switch(uMsg)
{
case WM_CLOSE:
::EndDialog(hDlg, IDOK);
return TRUE;
break;
}
return 0;
}
责任编辑:冬天来了
【字号: 】【去论坛讨论】【发表评论】【打印本文】【告诉好友】【关闭窗口

姓名:

验证码: 点击刷新