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
DeleteDlg.cpp
Package: 福利彩票号码统计.rar [view]
Upload User: dinghaosmt
Upload Date: 2013-03-22
Package Size: 110k
Code Size: 2k
Category:
Shot Game
Development Platform:
Visual C++
- // DeleteDlg.cpp : implementation file
- //
- #include "stdafx.h"
- #include "福利彩票号码统计.h"
- #include "DeleteDlg.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CDeleteDlg dialog
- CDeleteDlg::CDeleteDlg(CWnd* pParent /*=NULL*/)
- : CDialog(CDeleteDlg::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CDeleteDlg)
- m_Del_ID = 0;
- //}}AFX_DATA_INIT
- }
- void CDeleteDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CDeleteDlg)
- DDX_Text(pDX, IDC_EDIT1, m_Del_ID);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CDeleteDlg, CDialog)
- //{{AFX_MSG_MAP(CDeleteDlg)
- ON_BN_CLICKED(IDC_DELETE_BUTTON, OnDeleteButton)
- ON_BN_CLICKED(IDC_EXIT_BUTTON, OnExitButton)
- ON_WM_CTLCOLOR()
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CDeleteDlg message handlers
- void CDeleteDlg::OnDeleteButton()
- {
- OnOK();
- }
- void CDeleteDlg::OnExitButton()
- {
- OnCancel();
- }
- HBRUSH CDeleteDlg::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor)
- {
- pDC->SetBkMode(TRANSPARENT);
- pDC->SetTextColor(RGB(0,0,255));
- return m_hbrush;
- }
- BOOL CDeleteDlg::OnInitDialog()
- {
- CDialog::OnInitDialog();
- m_hbrush=CreateSolidBrush(RGB(128,0,128));
- return TRUE; // return TRUE unless you set the focus to a control
- // EXCEPTION: OCX Property Pages should return FALSE
- }