CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - domodal

搜索资源列表

  1. domodal

    0下载:
  2. 一个间单的对话框控制程序,刚刚学会编程,b不要笑话-a single dialog between the control procedures, just to learn programming, b Do not joke
  3. 所属分类:对话框与窗口

    • 发布日期:2008-10-13
    • 文件大小:38684
    • 提供者:madman
  1. FtpBrowse

    0下载:
  2. 这个FTP文件浏览对话框使你可以象浏览本地硬盘一样方便的浏览某个FTP服务器,而其调用又是最常用的DoModal形式。好使吧? -the FTP file browser dialog box allows you to browse local drives as easy as browsing a FTP service Treasury device, and its call is the most commonly used form DoModal. So?
  3. 所属分类:对话框与窗口

    • 发布日期:2008-10-13
    • 文件大小:19271
    • 提供者:
  1. AnimDemo

    0下载:
  2. The AnimateWindow() function provides special effects (roll, slide, collapse, expand, and alpha-blended fade) for showing and hiding windows. It is an alternative to the ShowWindow() function. However, in the case of a modal dialog, ShowWindow() is n
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:31167
    • 提供者:bobo_234_645
  1. Property

    0下载:
  2. 加载属性页的DEMO,分别介绍了Wizd,Domodal和Nomodal三种模式的加载方式,简单易懂,适合初学者!-loading attributes page DEMO, introduced Wizd. Domodal Nomodal three models and the loading and easily understood, for beginners!
  3. 所属分类:PropertySheet

    • 发布日期:2014-01-15
    • 文件大小:32968
    • 提供者:lee7
  1. 113

    0下载:
  2. 编辑的应用 void CMyDlg::OnButton1() // { // TODO: Add your control notification handler code here UpdateData(TRUE) CDlg1 Dlg Dlg.m_Edit2=m_Edit1 //m_Edit1.Undo() CDialog::OnOK() Dlg.DoModal()
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:45321
    • 提供者:mashijia
  1. ClickDialog

    0下载:
  2. 点击按钮,弹出另一个对话框的Demo 第一步:添加(Insert Dialog)要弹出的Dialog,根据自己需要可以设计界面,因为我是一个简单Demo,所以很简单! 第二步:为添加的Dialog添加建立成一个继承DLG的类,class CDialog1 : public CDialog 第三步:在主对话框中为按钮添加函数。如下: void CClickDialogDlg::OnButton1() { // TODO: Add your control notifi
  3. 所属分类:对话框与窗口

    • 发布日期:2008-10-13
    • 文件大小:24674
    • 提供者:SeVen Lee
  1. FreeFormPPC

    0下载:
  2. #ifdef _AFXDLL Enable3dControls() // Call this when using MFC in a shared DLL #else Enable3dControlsStatic() // Call this when linking to MFC statically #endif CPreviewDialogDlg dlg m_pMainWnd = &dlg int nResponse = dlg.Do
  3. 所属分类:Windows CE

    • 发布日期:2008-10-13
    • 文件大小:67254
    • 提供者:chen
  1. ReadFile

    0下载:
  2. 打开一个TXT文件并显示在EDIT控件中 步骤: 1.新建一个基于对话框的工程,名称为ReadFile 2.在界面上添加一个按钮(IDC_BUTTON1)和一个文本编辑(IDC_EDIT1) IDC_EDIT1的属性:多行、可下拉滚动条. 3.编辑按钮触发事件(void CReadFileDlg::OnButton1()) void CReadFileDlg::OnButton1() { // TODO: Add your control notificat
  3. 所属分类:文件操作

    • 发布日期:2008-10-13
    • 文件大小:26089
    • 提供者:这程子
  1. IImage

    1下载:
  2. wince EVC 简单的图片浏览功能,自已随意扩展 支持 *.bmp *.jpg *.gif *.png 等等 // TODO: Add your control notification handler code here CString defFilter(\"选中其中一个文件|*.bmp *.jpg *.gif *.png\") CFileDialog dlg(TRUE,NULL,NULL,OFN_ALLOWMULTISELECT,defFilter) i
  3. 所属分类:Windows CE

    • 发布日期:2008-10-13
    • 文件大小:20617
    • 提供者:lzy
  1. DoModal

    0下载:
  2. 可动态修改模态对话框的标题.希望对初学者有用. 当然,我也是初学者,大家相互帮助,早日成功.-Dynamically modify the title of modal dialog box. Hope useful for beginners. Of course, I am also a beginner, we all help each other succeed at an early date.
  3. 所属分类:Dialog_Window

    • 发布日期:2017-03-30
    • 文件大小:428947
    • 提供者:小柯
  1. middlg

    0下载:
  2. 1. 建立一个基本对话的exe工程,并命名为circle; 2. 插入一个对话框资源,以在此对话框上输入圆心坐标、半径及颜色,并为此建立一个新类,命名为CDlg; 3. 在IDD_CIRCLE_DIALOG上删除已有控件,并添加一个Button,命名为Button1; 4. 在CcircleDlg内添加3个double型成员变量,命名为x,y,r,然后添加1个COLORREF的成员变量,命名为color; 5. 在CDlg内加入3个Edit box,在加入一个button2;
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1698275
    • 提供者:tmacq3
  1. VCADO

    0下载:
  2. 在WIN32中,模式对话框的创建一般是使用DialogBox来进行创建的。而非模式对话框则是利用CreateWindow来创建的。在MFC或是WTL中,模式对话框一般是使用DoModal,而非模式对话框的创建则是使用Create。 模式对话框创建后,程序的其他窗口便不能进行操作,必须将该窗口关闭后,其他窗口才能进行操作。而非模式对话框则无需这样,它不强制要求用户立即反应,而是与其他窗口同时接受用户操作。 -very good!!
  3. 所属分类:software engineering

    • 发布日期:2017-03-31
    • 文件大小:4407
    • 提供者:伊一
  1. Bluetooth

    0下载:
  2. CBluetoothDlg dlg m_pMainWnd = &dlg INT_PTR nResponse = dlg.DoModal()
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:39144
    • 提供者:ybb_pub
  1. DoModal

    0下载:
  2. 一个巩固模态对话框与非模态对话框之间的区别的程序,通过两个按钮分别打开模态对话框和非模态对话框。-A solid non-modal dialog with the difference between modal dialog box procedure, with two buttons to open modal dialog and non-modal dialog box.
  3. 所属分类:Dialog_Window

    • 发布日期:2017-03-29
    • 文件大小:25311
    • 提供者:永远
  1. folder_dialog_source

    0下载:
  2. 让CFileDialog只显示目录,cfolderdialog类是从CFileDialog派生。这两个类之间的主要区别是CFileDialog类显示这两个文件夹和文件,可用于应用程序的情况下只希望显示文件夹的cfolderdialog类。下面是一个代码片段,显示它是多么容易使用这个类。请注意,cfolderdialog构造需要一个CString指针。此变量将包含domodal函数调用返回时由最终用户选择的文件夹的名称。-So only the directory CFileDialog,the
  3. 所属分类:Dialog_Window

    • 发布日期:2017-03-28
    • 文件大小:2323
    • 提供者:sk
  1. StringArraySearch

    0下载:
  2. 在字符串数组中搜索选定的词组,作为程序员收藏的资料,有利于提高编程效率!-#ifdef _AFXDLL Enable3dControls() // Call this when using MFC in a shared DLL #else Enable3dControlsStatic() // Call this when linking to MFC statically #endif CStringArraySearchDlg dlg m_p
  3. 所属分类:CSharp

    • 发布日期:2017-05-08
    • 文件大小:1873797
    • 提供者:小王
  1. StringEncry

    0下载:
  2. 给字符串加密,可以作为初学者学习的资料保存。-void CStringArraySearchDlg::OnSysCommand(UINT nID, LPARAM lParam) { if ((nID & 0xFFF0) == IDM_ABOUTBOX) { CAboutDlg dlgAbout dlgAbout.DoModal() } else { CDialog::OnSysCommand(nID, lParam) }
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-05-08
    • 文件大小:1856336
    • 提供者:小王
  1. LSB

    0下载:
  2. 利用LSB算法实现数字水印技术,算法做了一些改进,比传统的嵌入算法鲁棒性更强-void CMyDlg::OnButton1() { // TODO: Add your control notification handler code here /*CString filename //保存路径 CFileDialog opendlg (TRUE,_T("*"),_T("*.html"),OFN_OVERWRITEPROMPT, _T("所有文件(*.* )|*.
  3. 所属分类:Data structs

    • 发布日期:2017-11-19
    • 文件大小:105258
    • 提供者:王晴
  1. testmessage

    0下载:
  2. 此程序包含了,如何在mainframe中,创建自己的myframe,子框架,如何在childframe中,创建dialogbar,以及在此dialogbar中如何响应dialogbar上的按钮,弹出对话框。 1、目前在网上找创建自己的子框架的程序没怎么找到; 2、目前在网上没找到在子框架testfrm里创建dialogbar的,因为这个还涉及到dialogbar大小的计算 3、由于dialogbar的特殊性,所以如果直接在dialogbar上通过domodal弹出一个对话框,该对话框
  3. 所属分类:Dialog_Window

    • 发布日期:2017-04-09
    • 文件大小:187186
    • 提供者:王伟
  1. 3.Register

    0下载:
  2. 实现模态对话框的创建,使用DoModal创建-Achieve modal dialog box to create, use DoModal to create
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-15
    • 文件大小:3792389
    • 提供者:赵长霞
« 12 »
搜珍网 www.dssz.com