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

📄 myintro.cpp

📁 基于TCP/IP的网络通信技术实现了面向连接的用户与服务器间点对点异步通信
💻 CPP
字号:
// MyIntro.cpp : implementation file
//

#include "stdafx.h"
#include "Client.h"
#include "MyIntro.h"

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

/////////////////////////////////////////////////////////////////////////////
// CMyIntro dialog


CMyIntro::CMyIntro(CWnd* pParent /*=NULL*/)
	: CDialog(CMyIntro::IDD, pParent)
{
	//{{AFX_DATA_INIT(CMyIntro)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}


void CMyIntro::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CMyIntro)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CMyIntro, CDialog)
	//{{AFX_MSG_MAP(CMyIntro)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CMyIntro message handlers

void CMyIntro::OnOK() 
{
	// TODO: Add extra validation here
	MessageBox("多谢你对本人以及该软件的帮助!\n谢谢您的使用,请多提宝贵意见!","网际飞标",MB_OK);
	CDialog::OnOK();
}

⌨️ 快捷键说明

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