⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 yanzheng.cpp

📁 网络传输方面的范例程序,其中有MD5加密和解密的子程序,可以参考
💻 CPP
字号:
// yanzheng.cpp : implementation file
//

#include "stdafx.h"
#include "shiyan1.h"
#include "yanzheng.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// yanzheng dialog


yanzheng::yanzheng(CWnd* pParent /*=NULL*/)
	: CDialog(yanzheng::IDD, pParent)
{
	//{{AFX_DATA_INIT(yanzheng)
	m_userID = _T("");
	//}}AFX_DATA_INIT
}


void yanzheng::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(yanzheng)
	DDX_Text(pDX, IDC_EDIT1, m_userID);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(yanzheng, CDialog)
	//{{AFX_MSG_MAP(yanzheng)
	ON_EN_CHANGE(IDC_EDIT1, OnChangeEdit1)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// yanzheng message handlers

void yanzheng::OnOK() 
{
	// TODO: Add extra validation here
	
	CDialog::OnOK();
}

void yanzheng::OnChangeEdit1() 
{
	// TODO: If this is a RICHEDIT control, the control will not
	// send this notification unless you override the CDialog::OnInitDialog()
	// function and call CRichEditCtrl().SetEventMask()
	// with the ENM_CHANGE flag ORed into the mask.
	
	// TODO: Add your control notification handler code here
	
}

void yanzheng::OnCancel() 
{
	// TODO: Add extra cleanup here
	
	CDialog::OnCancel();
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -