资源简介
用winsock实现的聊天程序
![](http://www.nz998.com/pic/41845.jpg)
代码片段和文件信息
// MyQQ.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “MyQQ.h“
#include “MyQQDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMyQQApp
BEGIN_MESSAGE_MAP(CMyQQApp CWinApp)
//{{AFX_MSG_MAP(CMyQQApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CMyQQApp construction
CMyQQApp::CMyQQApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CMyQQApp object
CMyQQApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CMyQQApp initialization
BOOL CMyQQApp::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
CMyQQDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1078 2003-04-05 09:22 socket_chat\res\MyQQ.ico
文件 396 2003-04-05 09:22 socket_chat\res\MyQQ.rc2
目录 0 2003-04-10 14:49 socket_chat\res
文件 2916 2004-10-04 21:33 socket_chat\Cn700.com.txt
文件 22572 2005-07-03 13:51 socket_chat\MyQQ.aps
文件 2153 2005-07-03 13:55 socket_chat\MyQQ.clw
文件 2129 2003-04-05 09:22 socket_chat\MyQQ.cpp
文件 4120 2003-04-09 18:54 socket_chat\MyQQ.dsp
文件 533 2003-04-05 09:22 socket_chat\MyQQ.dsw
文件 1302 2003-04-05 09:22 socket_chat\MyQQ.h
文件 91136 2005-07-03 13:55 socket_chat\MyQQ.ncb
文件 54784 2005-07-03 13:55 socket_chat\MyQQ.opt
文件 244 2005-07-03 13:51 socket_chat\MyQQ.plg
文件 7003 2003-04-15 11:00 socket_chat\MyQQ.rc
文件 31020 2003-04-15 10:59 socket_chat\MyQQDlg.cpp
文件 2743 2003-04-15 10:57 socket_chat\MyQQDlg.h
文件 3543 2003-04-05 09:22 socket_chat\ReadMe.txt
文件 1508 2003-04-10 19:07 socket_chat\resource.h
文件 206 2003-04-05 09:22 socket_chat\StdAfx.cpp
文件 1102 2003-04-05 09:22 socket_chat\StdAfx.h
目录 0 2006-03-26 19:45 socket_chat
----------- --------- ---------- ----- ----
230706 22
- 上一篇:cutecom-0.20.0.tar.gz
- 下一篇:用友UFO报表取数讲解
相关资源
- 通信软件的具体实例──基于Socket的
- 用VC 编写的仿QQ聊天室程序源代码
- Qt局域网聊天软件
- websocket实现一对一聊天
- QT局域网聊天系统(基于QT5.修改过)
- 基于swing的简单聊天器(兼传输文件)
- 毕业设计:网络围棋对弈
- 飞秋FeiQ 兼容qq和飞鸽传书功能
- 基于CSocket的多人聊天室
- mfc聊天室
- irc聊天室
- 采用WINSOCK2 编写的TCP/UDP通信程序
- winsock win10 注册表备份文件
- Scratch案例:聊天交互 .sb2
- 微信聊天机器人源码
- Axure原型(IM聊天工具PC端).rp
- swift-模仿类似聊天的UI
- 易语言服务器源码易语言简易聊天室
- 易语言P2P聊天源码
- 嵌入式局域网聊天系统客户端
- QQ米i吗破解
- 漫言阁个人博客 V3.0 全功能版
- GG2014版源码。仿QQ聊天软件
- SignalR net版本的在线聊天室
- linux网络聊天室
- 基于ajax的web聊天室
- FLASH局域网免服务器P2P聊天室源码(
- 易语言客户端源码易语言服务端源码
- 易语言易聊天客户端源码易语言易聊
- 易语言聊天室客户源码易语言聊天室
评论
共有 条评论