资源简介
本次课程设计,并不完善。。还有后续的美化功能没实现,但基本功能已经出来了。。

代码片段和文件信息
// 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(“asdfasdf!“);
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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1221 2005-01-08 17:59 chat\chat.clw
文件 2114 2008-03-04 16:31 chat\chat.cpp
文件 4120 2008-12-03 10:48 chat\chat.dsp
文件 531 2008-03-04 16:27 chat\chat.dsw
文件 1302 2008-03-04 16:27 chat\chat.h
文件 1499 2009-03-01 21:32 chat\chat.plg
文件 3543 2008-03-04 16:27 chat\ReadMe.txt
文件 820 2008-03-04 19:02 chat\Resource.h
文件 206 2008-03-04 16:27 chat\StdAfx.cpp
文件 1074 2008-03-04 16:33 chat\StdAfx.h
文件 5506 2008-12-30 10:00 chat\chat.rc
文件 1663 2008-12-30 10:13 chat\chatDlg.h
文件 6142 2008-12-30 11:44 chat\chatDlg.cpp
文件 1078 2008-03-04 16:27 chat\res\chat.ico
文件 396 2008-03-04 16:27 chat\res\chat.rc2
....SHR 8 2009-03-06 09:10 chat\res\Desk_top_.ini
....SHR 8 2009-03-06 09:10 chat\Desk_top_.ini
文件 205824 2009-03-01 21:32 chat\Debug\vc60.idb
文件 364544 2005-01-08 16:27 chat\Debug\vc60.pdb
文件 218024 2005-01-08 16:27 chat\Debug\chat.ilk
文件 106433 2005-01-08 16:27 chat\Debug\StdAfx.obj
文件 30074 2005-01-08 16:27 chat\Debug\chatDlg.obj
文件 13049 2005-01-08 16:27 chat\Debug\chat.obj
....SHR 8 2009-03-06 09:10 chat\Debug\Desk_top_.ini
文件 10606 2009-03-01 21:32 chat\Debug\RCa11376
文件 2560 2008-02-23 09:11 chat\chat.suo
文件 41984 2009-03-01 21:40 chat\chat.ncb
文件 10606 2009-03-01 21:32 chat\RCa13724
文件 49664 2009-03-01 21:40 chat\chat.opt
目录 0 2008-12-30 11:45 chat\res
............此处省略5个文件信息
相关资源
- 通信软件的具体实例──基于Socket的
- Qt局域网聊天软件
- QT局域网聊天系统(基于QT5.修改过)
- 嵌入式局域网聊天系统客户端
- 基于QTsocket的局域网聊天室
- 局域网多人语音聊天
- Qt局域网聊天室.zip
- 局域网聊天及其源码-QT
- Qt基于tcp和udp局域网聊天工具
- 基于QT的局域网聊天系统附文档
- syc的vc局域网聊天室源码
- 局域网聊天qq
- Linux局域网聊天项目
- qt学生管理系统内置局域网聊天以及传
- 基于CSocket的局域网聊天和文件传输
- 局域网聊天工具socket通信技术
- QT聊天系统
- 仿QQ聊天室,绝对干货
- Qt实现的简易局域网聊天室的Demo
- 基于P2P技术的局域网聊天工具
- 基于QT的局域网聊天系统215855
- QIM 局域网聊天程序
- 局域网聊天
- 基于UDP的局域网聊天系统.doc
- QT编写的局域网聊天工具仿飞秋
- QT局域网聊天传输
- QT实现简单的局域网聊天工具
- LINPOP局域网聊天
- 局域网聊天程序基于套接字
- 易语言超高仿QQ聊天源码打造自己的局
评论
共有 条评论