首页 | IT新闻 | 硬件 | 操作系统 | 开发 | 网络编程 | 数据库 | 热门框架 | 网络安全 | 组网 | 建站指南 | 网页制作 | 特效 | 实用技巧 | 服务器 | 办公 | QQ | 探索 | 社区

  • 技术部落
  • 部落首页 > 程序开发 > C/C#/C++ > 正文
  • VC6.0中还可以这样创建对话框
      2007-3-20  来源:网络资源  编辑:Jsbulo  热度:

    #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;
    }