Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
MyDialog1.cpp
Package: TTX.rar [view]
Upload User: tengfei20
Upload Date: 2022-07-03
Package Size: 11400k
Code Size: 1k
Category:
GUI Develop
Development Platform:
C/C++
- // MyDialog1.cpp : implementation file
- //
- #include "stdafx.h"
- #include "TTX.h"
- #include "MyDialog1.h"
- // MyDialog1 dialog
- IMPLEMENT_DYNAMIC(MyDialog1, CDialog)
- MyDialog1::MyDialog1(CWnd* pParent /*=NULL*/)
- : CDialog(MyDialog1::IDD, pParent)
- , XX1(0)
- , YY1(0)
- , XX2(0)
- , YY2(0)
- {
- #ifndef _WIN32_WCE
- EnableActiveAccessibility();
- #endif
- }
- MyDialog1::~MyDialog1()
- {
- }
- void MyDialog1::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- DDX_Text(pDX, IDC_EDIT1, XX1);
- DDV_MinMaxInt(pDX, XX1, 0, 1500);
- DDX_Text(pDX, IDC_EDIT2, YY1);
- DDV_MinMaxInt(pDX, YY1, 0, 1500);
- DDX_Text(pDX, IDC_EDIT3, XX2);
- DDV_MinMaxInt(pDX, XX2, 0, 1500);
- DDX_Text(pDX, IDC_EDIT4, YY2);
- DDV_MinMaxInt(pDX, YY2, 0, 1500);
- }
- BEGIN_MESSAGE_MAP(MyDialog1, CDialog)
- END_MESSAGE_MAP()
- // MyDialog1 message handlers