资源简介
计算机网络课程设计基于socket文件传输实验,vs2013c++
代码片段和文件信息
// Chat.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Chat.h“
#include “ChatDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CChatApp
BEGIN_MESSAGE_MAP(CChatApp CWinApp)
//{{AFX_MSG_MAP(CChatApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CChatApp construction
CChatApp::CChatApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CChatApp object
CChatApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CChatApp initialization
BOOL CChatApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
CChatDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-12-27 09:04 Chat\
文件 36388 2011-12-18 15:47 Chat\Chat.aps
文件 1665 2011-12-18 16:20 Chat\Chat.clw
文件 2035 2011-12-17 20:14 Chat\Chat.cpp
文件 4127 2011-12-17 20:28 Chat\Chat.dsp
文件 533 2011-12-17 20:14 Chat\Chat.dsw
文件 1302 2011-12-17 20:14 Chat\Chat.h
文件 58368 2011-12-18 16:23 Chat\Chat.ncb
文件 655360 2011-12-18 16:23 Chat\Chat.opt
文件 1163 2011-12-18 16:19 Chat\Chat.plg
文件 6237 2011-12-18 15:47 Chat\Chat.rc
文件 11921 2011-12-18 16:19 Chat\ChatDlg.cpp
文件 1899 2011-12-18 15:25 Chat\ChatDlg.h
目录 0 2011-12-18 16:23 Chat\Debug\
文件 3761152 2011-12-18 16:19 Chat\Debug\Chat.bsc
文件 118881 2011-12-18 16:19 Chat\Debug\Chat.exe
文件 252612 2011-12-18 16:19 Chat\Debug\Chat.ilk
文件 18132 2011-12-18 15:47 Chat\Debug\Chat.obj
文件 6877004 2011-12-18 15:47 Chat\Debug\Chat.pch
文件 427008 2011-12-18 16:19 Chat\Debug\Chat.pdb
文件 3108 2011-12-18 15:47 Chat\Debug\Chat.res
文件 0 2011-12-18 15:47 Chat\Debug\Chat.sbr
文件 59996 2011-12-18 16:19 Chat\Debug\ChatDlg.obj
文件 0 2011-12-18 16:19 Chat\Debug\ChatDlg.sbr
文件 106067 2011-12-18 15:47 Chat\Debug\StdAfx.obj
文件 1366631 2011-12-18 15:47 Chat\Debug\StdAfx.sbr
文件 205824 2011-12-18 16:19 Chat\Debug\vc60.idb
文件 372736 2011-12-18 16:19 Chat\Debug\vc60.pdb
文件 206 2011-12-17 20:14 Chat\StdAfx.cpp
文件 1054 2011-12-17 20:14 Chat\StdAfx.h
目录 0 2011-12-17 20:14 Chat\res\
............此处省略3个文件信息
- 上一篇:VC++ MFC 串口通信20个经典源码合集
- 下一篇:QT开发多文档框架
相关资源
- C语言实现TCP/IP协议通信和UDP协议通信
- c语言+UDP+DES加密+socket编程
- 局域网下,手机可以和电脑通过sock
- 计算机网络课程设计之Ping程序含C++原
- 基于c++和winsocket的局域网聊天源代码
- 基于udp的socket编程
- VC++,CSocket实现网络聊天,可发文件,
- 基于TCP协议的文件传输编程
- Socket编写的一个基于MFC的聊天程序源
- C++写的网络共享白板
- 基于TCP/IP socket的局域网聊天系统
- C++编写的多线程C/S模式仿QQ软件
- c++ socket 实现 语音 通信 双工
- MFC Csocket实现点对点文件传输
- CSocket端口扫描源代码MFC、VC++耿网出品
- 简单的基于MFC的Socket点对点对话客户
- MFC简单的客户端服务器通信软件
- 网络五子棋双人对弈系统
- 自己编写的C++基于socket编程的UDP聊天
- MFC socket 局域网聊天
- VC6.0 socket编程,多客户端,单服务器
- VC++ socket 聊天室客户端
- C++ Socket 多线程多机聊天
- C语言写的UDP文件传输
- C++聊天程序源程序有服务器和客户端
- c++实现socket:一个服务器对应多个客
- 网络协议分析器的设计与实现
- C语言编写双人剪刀石头布联机游戏代
- 基于TCP、IP的网络编程
- 基于SOCKET的C++ 即时通讯系统
评论
共有 条评论