资源简介
主要是图片的操作及SOCKET 异步选择模型的使用。
代码片段和文件信息
// Client.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Client.h“
#include “ClientDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CClientApp
BEGIN_MESSAGE_MAP(CClientApp CWinApp)
//{{AFX_MSG_MAP(CClientApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CClientApp construction
CClientApp::CClientApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CClientApp object
CClientApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CClientApp initialization
BOOL CClientApp::InitInstance()
{
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
WSADATA wsd;
WSAStartup(MAKEWORD(22)&wsd);
CClientDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2010-08-03 04:01 Client
文件 21132 2010-08-03 03:58 Client\Client.aps
文件 2110 2007-05-08 08:52 Client\Client.cpp
文件 4195 2007-05-08 08:52 Client\Client.dsp
文件 535 2007-05-08 08:52 Client\Client.dsw
文件 1324 2007-05-08 08:52 Client\Client.h
文件 41984 2010-08-03 04:01 Client\Client.ncb
文件 53760 2010-08-03 04:01 Client\Client.opt
文件 246 2010-08-03 03:59 Client\Client.plg
文件 5454 2007-05-08 08:52 Client\Client.rc
文件 6634 2007-05-08 08:52 Client\ClientDlg.cpp
文件 1562 2007-05-08 08:52 Client\ClientDlg.h
文件 3579 2007-05-08 08:52 Client\ReadMe.txt
目录 0 2010-08-03 03:55 Client\res
文件 1078 2007-05-08 08:52 Client\res\Client.ico
文件 398 2007-05-08 08:52 Client\res\Client.rc2
文件 914 2007-05-08 08:52 Client\Resource.h
文件 208 2007-05-08 08:52 Client\StdAfx.cpp
文件 1054 2007-05-08 08:52 Client\StdAfx.h
目录 0 2010-08-03 04:02 Server
文件 3579 2007-05-08 08:52 Server\ReadMe.txt
目录 0 2010-08-03 03:55 Server\res
文件 1078 2007-05-08 08:52 Server\res\Server.ico
文件 398 2007-05-08 08:52 Server\res\Server.rc2
文件 684 2007-05-08 08:52 Server\Resource.h
文件 20708 2010-08-03 03:55 Server\Server.aps
文件 2110 2007-05-08 08:52 Server\Server.cpp
文件 4198 2007-05-08 08:52 Server\Server.dsp
文件 535 2007-05-08 08:52 Server\Server.dsw
文件 1324 2007-05-08 08:52 Server\Server.h
............此处省略11个文件信息
- 上一篇:小型公司工资管理系统
- 下一篇:地球绕着太阳转,月亮绕着地球转
相关资源
- vc++著名的木马程序BO2000源代码.rar
- 推箱子游戏用C语言在VC++6.0下编写
- 语音信号端点检测(VC++6.0)
- vc++6.0 基于mfc音乐播放器
- 利用VC++编写的直线圆弧插补的实现
- RTSP请求客户端
- 边界跟踪算法的实现,图像处理 c++
- VC++(VS2008)\“橡皮筋\“CRectTracker类
- vc++6.0DES加密算法+数据加密+文件加密
- 用DEVC++实现的小型通信录程序带实验
- 个人相册管理系统————VC++
- 软件测试实验报告——三角形问题
- GPS卫星定位-实时位置计算程序-VC++源
- 驱动程序加载
- 纸牌 windows 纸牌
- MFC程序开发之聊天室客户端+服务器源
- vc++编写的界面源代码
- VC++注册码加密源程序含注册机、解密
- USB 通讯 libusb-win32
- 又一个douglas道格拉斯VC++算法
- 家庭收支管理系统基于VC++ ACCESS数据库
- 功能非常全的数字图像处理程序含源
- 家庭财务系统,可在devc++上直接运行
- 特殊矩阵和压缩存储
- VC++磁盘MBR读写程序,测试通过
- 一个FTP客户端的设计与实现C实现
- 图像点运算VC++程序
- 摄影测量直接线性变换DLTVC++程序代码
- 用VC++6.0开发监控界面的方法
- VC++ 基于IE内核功能很齐全的浏览器(
评论
共有 条评论