Location:
Search - ddx
Search list
Description: 解释怎样用DDX/DDV和WTL的属性页表(35KB)
-explain how to use DDX / WTL its realization and the attributes of pages (35 kB)
Platform: |
Size: 35770 |
Author: 黄亦非 |
Hits:
Description: //{{AFX_DATA(CIEButtonDlg)
enum { ID D = IDD_IEBUTTON_DIALOG }
// NOTE: the ClassWizard will add data members here
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CIEButtonDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX) // DDX/DDV support
//}}AFX_VIRTUALD = IDD_IEBUTTON_DIALOG }
// NOTE: the ClassWizard will add data members here
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CIEButtonDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX) // DDX/DDV support
-/ / ((AFX_DATA (CIEButtonDlg) enum (ID / / ( (AFX_DATA (CIEButtonDlg) enum (IDD = IDD_IEBU TTON_DIALOG) / / NOTE : the ClassWizard will add data members here / /)) AFX_DATA / / ClassWizard generated virtual fun segments overrides / / ((AFX_VIRTUAL (CIEButtonD lg) protected : virtual void DoDataExchange (CDataExchange * pDX) / / DDX / support its realization / /)) = IDD AFX_VIRTUALD _IEBUTTON_DIALOG) / / NOTE : the ClassWizard will add data members here / /)) AFX_DATA / / ClassWizard generated virtual fun segments overrides / / ((AFX_VIRTUAL (CIEButtonD lg) protected : virtual void DoDataExchange (CDataExchange * pDX) / / DDX / support its realization
Platform: |
Size: 33378 |
Author: 穆菲 |
Hits:
Description: 利用icc_AVR_C生成的.lst文件在Proteus_里调试AVR单片机的.ddx翻译程序-use icc_AVR_C generated. Lst document Proteus_ debugging AVR-li film plane. ddx translation program
Platform: |
Size: 13212 |
Author: 放弃 |
Hits:
Description: 利用HI-TECH_PICC生成的*.lst文件在Proteus_里调试PIC单片机的.ddx翻译程序-use of HI-TECH_PICC generated *. lst document Proteus_ Lane Debugging PIC MCU. ddx translation program
Platform: |
Size: 26644 |
Author: 放弃 |
Hits:
Description: 《对话框与控件》
MFC 的对话框和控件的封装真得可以节省你很多时间和功夫。没有MFC对控件的封装,你要操作控件就得耐着性子填写各种结构并写很多的SendMessage调用。MFC还提供了对话框数据交换(DDX),它可以在控件和变量之间传输数据。WTL 当然也提供了这些功能,并对控件的封装做了很多改进。本文将着眼于一个基于对话框的程序演示你以前用MFC实现的功能,除此之外还有WTL消息处理的增强功能-"dialog with the controls" MFC dialog boxes and controls package that they can really save you a lot of time and effort. MFC does not control the right package, you have to be operated controls resistance offered to fill in various structures and wrote a lot of SendMessage call. MFC dialog also provides data exchange (DDX), it can control and data transfer among variables. WTL course also provide these functions, as well as controls Packaging done a lot to improve. This paper will focus on a dialog based on the demonstration of the procedures before you use MFC function in addition WTL message processing enhancements
Platform: |
Size: 16948 |
Author: wwwwppp |
Hits:
Description: 《属性页与向导》甚至在成为Windows 95的通用控件之前,使用属性表来表示一些选项就已经成为一种很流行的方式。向导模式的属性表通常用来引导用户安装软件或完成其他复杂的工作。WTL对这两种方式的属性表都提供了很好的支持,可以使用前面介绍的与对话框相关的特性,如DDX和DDV。在本章我将演示如何创建一个基本的属性表和向导,如何处理属性页发送的通知消息和事件。-"Properties page with the Wizard," even as the common Windows controls 95, using Attribute Table said some options to have become a very popular way. Wizard mode attribute table is usually used to guide users to install software or perform other complicated tasks. WTL both ways attribute table provided a good support, using the above-described dialog with the relevant features, such as DDX and its realization. In this chapter I will demonstrate how to create a basic attribute tables and guides, how to handle property notices sent page news and events.
Platform: |
Size: 140807 |
Author: wwwwppp |
Hits:
Description: 通过DDX(动态数据交换)选择文件-through DDX (dynamic data exchange) select files
Platform: |
Size: 29382 |
Author: 陈功 |
Hits:
Description: 通过DDX(动态数据交换)选择目录-through DDX (dynamic data exchange) choose Contents
Platform: |
Size: 30402 |
Author: 陈功 |
Hits:
Description: 不是经典之做,但是算法可佳,分析IP地址(DDX)
Platform: |
Size: 21850 |
Author: 王朱忠 |
Hits:
Description: 分析IP地址(DDX).-analysis of the IP address (DDX).
Platform: |
Size: 24986 |
Author: 也强 |
Hits:
Description: The CXrNumericEdit class is derived from the normal CEdit class.
To use this class
Add the CXrNumericEdit source file to project.
Add standard edit control
Change CEdit class to CXrNumericEdit
public:
//Dialog Data
//{{AFX_DATA(CNumericEditDlg)
enum { IDD = IDD_NUMERICEDIT_DIALOG }
CXrNumericEdit m_ctrlPositiveValue
To get and set the value in the CXrNumericEdit control use the DDX functions.
void CNumericEditDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX)
//{{AFX_DATA_MAP(CNumericEditDlg)
DDX_Text(pDX, IDC_POSITIVE_SAMPLE, m_dbPositiveValue)
...
//}}AFX_DATA_MAP
}
Platform: |
Size: 40389 |
Author: tennis100 |
Hits:
Description: 中科杯 作品的模块,直接用,绝对好!
class CZhuCe : public CDialog
{
DECLARE_DYNAMIC(CZhuCe)
public:
CZhuCe(CWnd* pParent = NULL); // 标准构造函数
virtual ~CZhuCe();
// 对话框数据
enum { IDD = IDD_LOGIN_ZHUCE };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
DECLARE_MESSAGE_MAP()
public:
CString m_newname;
CString m_newpassword1;
CString m_newpassword2;
CString m_newmail;
CString m_newtel;
afx_msg void OnBnClickedButton1();
virtual BOOL OnInitDialog();
afx_msg void OnPaint();
afx_msg void OnEnChangeEdit5();
};
Platform: |
Size: 3167 |
Author: 1988huang.jin@163.com |
Hits:
Description: 通过DDX(动态数据交换)选择文件-through DDX (dynamic data exchange) select files
Platform: |
Size: 28672 |
Author: |
Hits:
Description: 通过DDX(动态数据交换)选择目录-through DDX (dynamic data exchange) choose Contents
Platform: |
Size: 29696 |
Author: |
Hits:
Description: 分析IP地址(DDX).-analysis of the IP address (DDX).
Platform: |
Size: 29696 |
Author: 也强 |
Hits:
Description: 解释怎样用DDX/DDV和WTL的属性页表(35KB)
-explain how to use DDX/WTL its realization and the attributes of pages (35 kB)
Platform: |
Size: 35840 |
Author: 黄亦非 |
Hits:
Description: //{{AFX_DATA(CIEButtonDlg)
enum { ID D = IDD_IEBUTTON_DIALOG }
// NOTE: the ClassWizard will add data members here
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CIEButtonDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX) // DDX/DDV support
//}}AFX_VIRTUALD = IDD_IEBUTTON_DIALOG }
// NOTE: the ClassWizard will add data members here
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CIEButtonDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX) // DDX/DDV support
-//((AFX_DATA (CIEButtonDlg) enum (ID// ( (AFX_DATA (CIEButtonDlg) enum (IDD = IDD_IEBU TTON_DIALOG)// NOTE : the ClassWizard will add data members here//)) AFX_DATA// ClassWizard generated virtual fun segments overrides// ((AFX_VIRTUAL (CIEButtonD lg) protected : virtual void DoDataExchange (CDataExchange* pDX)// DDX/support its realization//)) = IDD AFX_VIRTUALD _IEBUTTON_DIALOG)// NOTE : the ClassWizard will add data members here//)) AFX_DATA// ClassWizard generated virtual fun segments overrides// ((AFX_VIRTUAL (CIEButtonD lg) protected : virtual void DoDataExchange (CDataExchange* pDX)// DDX/support its realization
Platform: |
Size: 32768 |
Author: 穆菲 |
Hits:
Description: 利用icc_AVR_C生成的.lst文件在Proteus_里调试AVR单片机的.ddx翻译程序-use icc_AVR_C generated. Lst document Proteus_ debugging AVR-li film plane. ddx translation program
Platform: |
Size: 13312 |
Author: 放弃 |
Hits:
Description: 《对话框与控件》
MFC 的对话框和控件的封装真得可以节省你很多时间和功夫。没有MFC对控件的封装,你要操作控件就得耐着性子填写各种结构并写很多的SendMessage调用。MFC还提供了对话框数据交换(DDX),它可以在控件和变量之间传输数据。WTL 当然也提供了这些功能,并对控件的封装做了很多改进。本文将着眼于一个基于对话框的程序演示你以前用MFC实现的功能,除此之外还有WTL消息处理的增强功能-"dialog with the controls" MFC dialog boxes and controls package that they can really save you a lot of time and effort. MFC does not control the right package, you have to be operated controls resistance offered to fill in various structures and wrote a lot of SendMessage call. MFC dialog also provides data exchange (DDX), it can control and data transfer among variables. WTL course also provide these functions, as well as controls Packaging done a lot to improve. This paper will focus on a dialog based on the demonstration of the procedures before you use MFC function in addition WTL message processing enhancements
Platform: |
Size: 16384 |
Author: wwwwppp |
Hits:
Description: 东方财富DDX-L2公式源码,反映股票资金进出的情况。-Oriental Wealth Formula DDX-L2 source, reflecting the situation of stock funds in and out.
Platform: |
Size: 1024 |
Author: jinjin |
Hits: