资源简介
这是一个聊天室程序,是vc课程设计中的经典案例!我的课程设计作品。
代码片段和文件信息
// 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()
{
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
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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 114776 2008-03-10 08:15 乔秀明060420122\exe文件\chat.exe
文件 110693 2008-03-12 19:57 乔秀明060420122\exe文件\chatserver.exe
文件 22144 2008-03-13 09:56 乔秀明060420122\源程序\客户端\chat.aps
文件 1732 2008-03-16 10:10 乔秀明060420122\源程序\客户端\chat.clw
文件 2129 2005-05-10 10:15 乔秀明060420122\源程序\客户端\chat.cpp
文件 4246 2007-08-20 15:21 乔秀明060420122\源程序\客户端\chat.dsp
文件 533 2005-05-10 12:02 乔秀明060420122\源程序\客户端\chat.dsw
文件 1302 2005-05-10 10:13 乔秀明060420122\源程序\客户端\chat.h
文件 148480 2008-03-16 10:17 乔秀明060420122\源程序\客户端\chat.ncb
文件 51712 2008-03-16 10:17 乔秀明060420122\源程序\客户端\chat.opt
文件 1186 2008-03-10 08:15 乔秀明060420122\源程序\客户端\chat.plg
文件 6733 2008-03-07 18:13 乔秀明060420122\源程序\客户端\chat.rc
文件 7506 2008-03-10 08:14 乔秀明060420122\源程序\客户端\chatDlg.cpp
文件 1802 2008-03-07 12:32 乔秀明060420122\源程序\客户端\chatDlg.h
文件 114776 2008-03-10 08:15 乔秀明060420122\源程序\客户端\Debug\chat.exe
文件 15465 2008-03-10 08:06 乔秀明060420122\源程序\客户端\Debug\chat.obj
文件 418816 2008-03-10 08:15 乔秀明060420122\源程序\客户端\Debug\chat.pdb
文件 3056 2008-03-07 18:43 乔秀明060420122\源程序\客户端\Debug\chat.res
文件 0 2008-03-10 08:06 乔秀明060420122\源程序\客户端\Debug\chat.sbr
文件 44456 2008-03-10 08:15 乔秀明060420122\源程序\客户端\Debug\chatDlg.obj
文件 0 2008-03-10 08:15 乔秀明060420122\源程序\客户端\Debug\chatDlg.sbr
文件 14592 2008-03-10 08:06 乔秀明060420122\源程序\客户端\Debug\login.obj
文件 0 2008-03-10 08:06 乔秀明060420122\源程序\客户端\Debug\login.sbr
文件 106827 2008-03-10 08:06 乔秀明060420122\源程序\客户端\Debug\StdAfx.obj
文件 1391570 2008-03-10 08:06 乔秀明060420122\源程序\客户端\Debug\StdAfx.sbr
文件 372736 2008-03-10 08:15 乔秀明060420122\源程序\客户端\Debug\vc60.pdb
文件 1416 2008-03-07 18:33 乔秀明060420122\源程序\客户端\login.cpp
文件 1146 2005-05-10 11:42 乔秀明060420122\源程序\客户端\login.h
文件 1078 2008-03-07 18:11 乔秀明060420122\源程序\客户端\res\chat.ico
文件 396 2005-05-10 10:13 乔秀明060420122\源程序\客户端\res\chat.rc2
............此处省略47个文件信息
- 上一篇:Socket编写的一个基于MFC的聊天程序源代码。
- 下一篇:MFC函数库手册
相关资源
- 导入3dmax模型的VC++程序
- vc+SQL实现医院收费管理系统
- VC++6.0 MFC串口编程上位机程序代码.
- Visual C++串口通信及测控应用详解--源
- VC++编写的示波器模拟仿真程序
- VC6中使用MFC自动化Excel数据写入和图表
- VC++6.0多人网络小游戏-支持多人联机网
- MFC 下写的SVM类
- VC++ 游戏编程基础 入门必看
- VC++获取网上股市数据并实时图表显示
- 基于opengl粒子系统实现喷泉的模拟
- VC++记事本完整源程序
- MFC编程技巧与范例详解PDF(无水印 带
- MFC vc++ 银行业务模拟系统
- 精美时钟VC++6.0源代码)
- vc++6.0 与access管理系统
- 用VC++做的一个小型的画板
- Vc++流媒体播放器源码
- VC++热键,实现剪切板粘贴,指定的内
- vc++2010编译为静态库(.lib)的.vcxpro
- 段页式存储管理地址转换
- VC6.0获取MAC地址
- 基于MFC的单机版五子棋含PPT详细答辩
- VC 实现DDA,Breshenham,中点直线生成法
- VC++ 21点游戏
- VC6运行库全版
- VC++编写的强大画板程序
- VC++ 绘图 折线图 饼图 矩形图非常全面
- vc6.0+opengl纯色五角星填充
- vc6.0+opengl动态绘制五角星
评论
共有 条评论