资源简介
基于c++的简单文件传输,有服务器和客户端,vc++6.0可用
代码片段和文件信息
// FileTransferClient.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “FileTransferClient.h“
#include “MainFrm.h“
#include “FileTransferClientDoc.h“
#include “FileTransferClientView.h“
#include
#pragma comment( lib “shlwapi.lib“ )
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CFileTransferClientApp
BEGIN_MESSAGE_MAP(CFileTransferClientApp CWinApp)
//{{AFX_MSG_MAP(CFileTransferClientApp)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CFileTransferClientApp construction
CFileTransferClientApp::CFileTransferClientApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CFileTransferClientApp object
CFileTransferClientApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CFileTransferClientApp initialization
BOOL CFileTransferClientApp::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
// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
// don‘t need this registry stuff
/// SetRegistryKey(_T(“Local AppWizard-Generated Applications“));
/// LoadStdProfileSettings(); // Load standard INI file options (including MRU)
// initialize path name for current module and use it for .INI file creation
CString sModulePath;
::GetModuleFileName( NULL sModulePath.GetBuffer(255) 255 );
::PathMakePretty( sModulePath.GetBuffer(255) );
::PathRemoveFileSpec( sModulePath.GetBuffer(255) );
sModulePath.ReleaseBuffer();
// Use an .ini paradigm to load settings rather than the registry
// This makes for cleaner installs/unins
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 33932 2013-04-23 16:39 文件传输(c++)\文件传输客户端\FileTransferClient.aps
文件 5616 2004-10-23 22:56 文件传输(c++)\文件传输客户端\FileTransferClient.cpp
文件 4874 2004-10-24 16:50 文件传输(c++)\文件传输客户端\FileTransferClient.dsp
文件 794 2004-10-24 12:08 文件传输(c++)\文件传输客户端\FileTransferClient.dsw
文件 1488 2004-10-23 17:16 文件传输(c++)\文件传输客户端\FileTransferClient.h
文件 74752 2013-11-03 01:27 文件传输(c++)\文件传输客户端\FileTransferClient.ncb
文件 731136 2013-11-03 01:27 文件传输(c++)\文件传输客户端\FileTransferClient.opt
文件 2294 2013-04-23 16:40 文件传输(c++)\文件传输客户端\FileTransferClient.plg
文件 13429 2004-10-26 21:21 文件传输(c++)\文件传输客户端\FileTransferClient.rc
文件 1982 2004-10-23 17:16 文件传输(c++)\文件传输客户端\FileTransferClientDoc.cpp
文件 1607 2004-10-23 17:16 文件传输(c++)\文件传输客户端\FileTransferClientDoc.h
文件 19025 2004-10-30 13:57 文件传输(c++)\文件传输客户端\FileTransferClientView.cpp
文件 2891 2004-10-29 22:05 文件传输(c++)\文件传输客户端\FileTransferClientView.h
文件 2598 2004-10-26 20:37 文件传输(c++)\文件传输客户端\MainFrm.cpp
文件 1581 2004-10-23 17:16 文件传输(c++)\文件传输客户端\MainFrm.h
文件 4599 2004-10-23 17:16 文件传输(c++)\文件传输客户端\ReadMe.txt
文件 1078 2004-10-24 17:59 文件传输(c++)\文件传输客户端\res\FileTransferClient.ico
文件 410 2004-10-23 17:16 文件传输(c++)\文件传输客户端\res\FileTransferClient.rc2
文件 1078 2004-10-23 17:16 文件传输(c++)\文件传输客户端\res\FileTransferClientDoc.ico
文件 766 2004-10-24 12:53 文件传输(c++)\文件传输客户端\res\icon1.ico
文件 1078 2004-10-23 17:16 文件传输(c++)\文件传输客户端\res\Toolbar.bmp
文件 1108 2004-10-26 20:49 文件传输(c++)\文件传输客户端\resource.h
文件 220 2004-10-23 17:16 文件传输(c++)\文件传输客户端\StdAfx.cpp
文件 1102 2004-10-23 17:16 文件传输(c++)\文件传输客户端\StdAfx.h
文件 33072 2013-04-16 17:03 文件传输(c++)\文件传输服务器端\FileTransferServer.aps
文件 5616 2004-10-23 23:21 文件传输(c++)\文件传输服务器端\FileTransferServer.cpp
文件 4874 2004-10-26 21:46 文件传输(c++)\文件传输服务器端\FileTransferServer.dsp
文件 561 2009-12-16 20:27 文件传输(c++)\文件传输服务器端\FileTransferServer.dsw
文件 1488 2004-10-23 17:19 文件传输(c++)\文件传输服务器端\FileTransferServer.h
文件 115712 2013-11-03 01:26 文件传输(c++)\文件传输服务器端\FileTransferServer.ncb
............此处省略28个文件信息
相关资源
- fastMatch的c++实现(需要opencv支持)
- 《C++ GUI QT编程》教程配套
- Visual C++项目开发案例全程实录(第二
- C++ Primer Plus 6th Edition source code files
- CRC32校验程序源代码( C++)
- VC++之MFC类库中文手册一怀去意---
- 华科大c++上机实验答案
- 普通算术编码的C++实现
- 自适应算术编码c++程序
- c/c++控制台游戏
- PE文件格式解析MFCC++源码
- VS2010之MFC入门到精通教程1-55全部
- 基于C++的实时数据库的设计与实现
- linux C/C++实现的通过url访问网页提取网
- fast角点检测c++
- 通讯录管理系统c++版顺序表存储,折
- The C++ Programing language(Special Edition)
- 初学者学习C++ Builder第一个程序模拟聊
- 初学者学习C++ Builder第一个程序模拟聊
- Disruptor C++版(仅支持单生产者)
- Visual C++开发大全提高卷)光盘资料
- 用C++栈写的中缀表达式求解
- c++线程安全日志类
- MFC视频播放器(带播放列表VC++6.0源代
- C++primer第五版习题答案及解析
- 八数码问题C++代码
- winhttp 异步c++库
- 学生选课管理系统 C++
- 双目视觉标定棋盘格模板程序
- VC++调用大漠插件
评论
共有 条评论