• 大小: 3.29MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-21
  • 语言: C/C++
  • 标签: VC++  完整代码  QQ  

资源简介

VC++写的局域网聊天室完整版,虽说界面不怎么样,但基本功能都有了,包括聊天、注册、截图等,包含服务端和客户端,在VC6下顺利编译,如果你要从事VC++的网络编程的话,那么最好先学习或试着做一个聊天室的东西,相信对你帮助很大,这个简单的聊天室可以作为你的学习资料。

资源截图

代码片段和文件信息

// ChatSocket.cpp : implementation file
//

#include “stdafx.h“
#include “Client.h“
#include “ChatSocket.h“

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

/////////////////////////////////////////////////////////////////////////////
// CChatSocket

CChatSocket::CChatSocket()
{
}

CChatSocket::CChatSocket(CClientDlg* pDlg)
{
m_pDlg=pDlg;

}
CChatSocket::~CChatSocket()
{
}


// Do not edit the following lines which are needed by ClassWizard.
#if 0
BEGIN_MESSAGE_MAP(CChatSocket CSocket)
//{{AFX_MSG_MAP(CChatSocket)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
#endif // 0

/////////////////////////////////////////////////////////////////////////////
// CChatSocket member functions

void CChatSocket::OnReceive(int nErrorCode) 
{
// TODO: Add your specialized code here and/or call the base class

CSocket::OnReceive(nErrorCode);
m_pDlg->OnReceive(this);
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

----------- ---------  ---------- -----  ----

              9248284                    98


评论

共有 条评论