资源简介
一款用mfc做的聊天室,不是很难,适合初学者学习使用~~
代码片段和文件信息
// Client.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Client.h“
#include “ClientDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CClientApp
BEGIN_MESSAGE_MAP(CClientApp CWinApp)
//{{AFX_MSG_MAP(CClientApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CClientApp construction
CClientApp::CClientApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CClientApp object
CClientApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CClientApp initialization
BOOL CClientApp::InitInstance()
{
if (!AfxSocketInit())
{
AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
return FALSE;
}
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
CClientDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1829 2010-04-08 10:44 Server\ClientSocket.cpp
文件 1102 2010-04-08 10:44 Server\ClientSocket.h
文件 863 2010-04-08 10:44 Server\ListenSocket.cpp
文件 702 2010-04-08 10:44 Server\ListenSocket.h
文件 819 2010-04-08 10:44 Server\Message.cpp
文件 600 2010-04-08 10:44 Server\Message.h
文件 3587 2010-04-08 10:44 Server\ReadMe.txt
文件 1078 2010-04-08 10:44 Server\res\Server.ico
文件 398 2010-04-08 10:44 Server\res\Server.rc2
文件 959 2010-04-08 10:44 Server\resource.h
文件 36032 2010-04-08 10:44 Server\Server.aps
文件 1287 2010-04-08 10:44 Server\Server.clw
文件 2161 2010-04-08 10:44 Server\Server.cpp
文件 4558 2010-04-08 10:44 Server\Server.dsp
文件 535 2010-04-08 10:44 Server\Server.dsw
文件 1324 2010-04-08 10:44 Server\Server.h
文件 91136 2010-04-08 10:44 Server\Server.ncb
文件 55808 2010-04-08 10:44 Server\Server.opt
文件 902 2010-04-08 10:44 Server\Server.plg
文件 5489 2010-04-08 10:44 Server\Server.rc
文件 7700 2010-04-08 10:44 Server\ServerDLG.cpp
文件 1853 2010-04-08 10:44 Server\ServerDLG.h
文件 208 2010-04-08 10:44 Server\StdAfx.cpp
文件 1106 2010-04-08 10:44 Server\StdAfx.h
文件 123904 2010-04-08 10:44 Server\ts.ncb
文件 56832 2010-04-08 10:44 Server\ts.opt
文件 36592 2010-04-08 10:44 Client\Client.aps
文件 2146 2010-04-08 10:44 Client\Client.clw
文件 2157 2010-04-08 10:44 Client\Client.cpp
文件 4422 2010-04-08 10:44 Client\Client.dsp
............此处省略29个文件信息
- 上一篇:平差课程设计
- 下一篇:VC图像处理系列之一——图像读写篇
相关资源
- 使用VS2008MFC读取Excel里的数据
- Cantor集算法实现
- 利用MFC ODBC操作Access数据库实现显示、
- vc++6.0 基于mfc音乐播放器
- 配置OpenGL所需文件全
- MFC类图结构简图
- mfc获取鼠标位置颜色
- 电梯控制模拟程序MFC
- mfc 窗口分割实现多视图切换
- 纸牌 windows 纸牌
- MFC 打开word、ppt、pdf文件
- 获取网络时间校正本地系统时间,C
- MFC程序开发之聊天室客户端+服务器源
- MFCC梅尔倒谱参数及matlab代码
- mfc 贪吃蛇游戏 MFC实现贪吃蛇小游戏
- MFC实现类似Windows绘图的文字输入功能
- 绝对定向mfc源程序
- TCP一对多通信_基于MFC多线程
- MFC单文档程序连接Access数据库
- 货品的进销存管理系统,MFC编译
- MFC综合实战项目
- 生产者消费者算法图形化演示系统
- MFC 界面编程13个
- MFC入门教程:1天深入浅出MFC
- 摄影测量空间后方交会程序合集,含
- 基于MFC的计算器(功能非常齐全:进
- VegaPrime_MFC
- MFC打开和保存图片
- MFC实现简单的COM
- (转)VC老版主薄荷用VC++6.0写的TCP
评论
共有 条评论