资源简介
socket编程,基于UDP的简单可视化界面聊天程序,,局域网内可用,刚开始学socket编程的娃儿可以看一下,共勉。
代码片段和文件信息
// 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
//判断加载套接字库是否成功,注意要在StdAfx.h预编译同文件中加入#include 这个头文件
BOOL CChatApp::InitInstance()
{
if(!AfxSocketInit())
{
AfxMessageBox(“加载套接字库失败!“);
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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 35772 2013-04-26 20:19 Chat\Chat.aps
文件 1196 2013-04-26 20:27 Chat\Chat.clw
文件 2217 2013-04-25 11:29 Chat\Chat.cpp
文件 4123 2013-04-25 10:53 Chat\Chat.dsp
文件 533 2013-04-25 10:53 Chat\Chat.dsw
文件 1302 2013-04-25 10:53 Chat\Chat.h
文件 74752 2013-04-26 20:27 Chat\Chat.ncb
文件 50688 2013-04-26 20:27 Chat\Chat.opt
文件 667 2013-04-26 20:19 Chat\Chat.plg
文件 5519 2013-04-26 20:19 Chat\Chat.rc
文件 6783 2013-04-25 16:43 Chat\ChatDlg.cpp
文件 1649 2013-04-25 13:29 Chat\ChatDlg.h
文件 106563 2013-04-26 20:19 Chat\Debug\Chat.exe
文件 208968 2013-04-26 20:19 Chat\Debug\Chat.ilk
文件 13070 2013-04-25 13:45 Chat\Debug\Chat.obj
文件 5566904 2013-04-25 13:21 Chat\Debug\Chat.pch
文件 386048 2013-04-26 20:19 Chat\Debug\Chat.pdb
文件 2628 2013-04-26 20:19 Chat\Debug\Chat.res
文件 30369 2013-04-25 16:43 Chat\Debug\ChatDlg.obj
文件 106332 2013-04-25 13:21 Chat\Debug\StdAfx.obj
文件 214016 2013-04-26 20:19 Chat\Debug\vc60.idb
文件 364544 2013-04-25 16:43 Chat\Debug\vc60.pdb
文件 3543 2013-04-25 10:53 Chat\ReadMe.txt
文件 1078 2013-04-25 10:53 Chat\res\Chat.ico
文件 396 2013-04-25 10:53 Chat\res\Chat.rc2
文件 820 2013-04-25 13:45 Chat\resource.h
文件 206 2013-04-25 10:53 Chat\StdAfx.cpp
文件 1073 2013-04-25 11:29 Chat\StdAfx.h
目录 0 2013-04-26 20:19 Chat\Debug
目录 0 2013-04-25 23:55 Chat\res
............此处省略4个文件信息
- 上一篇:MISRA-C 2012.zip
- 下一篇:用c语言实现的MP3播放器
相关资源
- 基于linux C/C++和Qt的聊天程序
- 基于TCP协议VC++6.0实现的聊天程序
- C++多线程网络聊天程序
- 自己编写的C++基于socket编程的UDP聊天
- VC++UDP网络聊天程序
- c语言编程实现聊天程序设计
- C++聊天程序源程序有服务器和客户端
- 基于UDP协议的聊天程序 MFC环境下的
- C++基于UDP的控制台局域网聊天程序
- MySock 应用Socket编程实现一个简单的网
- 基于C++MFC的聊天程序,C/S模式
- 北邮程序实践--基于VS2010MFC的简单聊天
- 基于MFC点对点聊天程序
- 北邮程序实践--基于VS2010MFC的简单聊天
- 基于UDP的聊天程序MFC实现
- 基于MFC的UDP聊天程序
- 类似QQ的聊天程序 的客户端 + 服务器
- c++语言应用------基于visual studio的聊天
- vs2010 + MFC + UDP socket 聊天程序。
- VS MFC 聊天程序
- c++语言应用------基于visual studio的聊天
- vc++编写的聊天程序
- 网络程序设计综合实验-WeTalk聊天程序
- 基于MFC仿QQ聊天程序设计完整教程
- mfc编写的简单聊天程序
- 实现socket简易的聊天程序
- 基于Linux系统的聊天程序
- C++简易聊天程序C++简易聊天程序
- C++聊天程序,功能很强大,很实用
- MFC基于多线程的聊天程序用了winsock套
评论
共有 条评论