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
DlgNewRecord.cpp
Package: gamesourec6.rar [view]
Upload User: hbrsgg1
Upload Date: 2014-05-08
Package Size: 2826k
Code Size: 2k
Category:
Other Riddle games
Development Platform:
C/C++
- /*++
- Copyright (c) 2004-2005 Micro-soft
- Module Name:
- DlgNewRecord.cpp
- Abstract:
- the class of Dialog for recording the best sore of expert users.
- by pop up way.
- Author:
- Microsoft's Engineer - Unknown Name
- improved by Weijian Luo (Arthur Luo) 15-Jun-2005
- E-mail: skybluehacker@yahoo.com.cn
- Revision History: 1.0
- --*/
- #include "stdafx.h"
- #include "mine.h"
- #include "DlgNewRecord.h"
- #include "MineDefs.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- CDlgNewRecord::CDlgNewRecord(CWnd* pParent /*=NULL*/)
- : CDialog(CDlgNewRecord::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CDlgNewRecord)
- m_szName = _T("匿名");
- m_szDesc = _T("");
- //}}AFX_DATA_INIT
- }
- void CDlgNewRecord::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CDlgNewRecord)
- DDX_Text(pDX, IDC_EDIT_NAME, m_szName);
- DDX_Text(pDX, IDC_DESCRIBE, m_szDesc);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CDlgNewRecord, CDialog)
- //{{AFX_MSG_MAP(CDlgNewRecord)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- void CDlgNewRecord::SetLevel(UINT level)
- {
- CString szLevel;
- if (level == LEVEL_PRIMARY) szLevel = "初级";
- else if (level == LEVEL_SECONDRY) szLevel = "中级";
- else if (level == LEVEL_ADVANCE) szLevel = "高级";
- m_szDesc.Format("已破%s记录nr请留尊姓大名", szLevel);
- }
- CString CDlgNewRecord::GetName()
- {
- return m_szName;
- }