科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道VC 6.0 中还可以这样创建对话框

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

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

  #include "stdafx.h" #include "resource.h" #include static unsigned char dlg_14[] = { 0xc0,0x20,0xc8,0x80,0x00,0x00,0x00,0x0

作者:中国IT实验室 来源:中国IT实验室 2007年9月29日

关键字: VC 编程

  • 评论
  • 分享微博
  • 分享邮件
  #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;
}

查看本文来源

    • 评论
    • 分享微博
    • 分享邮件