资源简介
vc++ mfc 基于udp协议在不同ip地址之间文件传输
代码片段和文件信息
// FilePoster.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “FilePoster.h“
#include “FilePosterDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CFilePosterApp
BEGIN_MESSAGE_MAP(CFilePosterApp CWinApp)
//{{AFX_MSG_MAP(CFilePosterApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CFilePosterApp construction
CFilePosterApp::CFilePosterApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CFilePosterApp object
CFilePosterApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CFilePosterApp initialization
BOOL CFilePosterApp::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
CFilePosterDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2199616 2008-12-19 23:53 FilePoster\Debug\FilePoster.exe
文件 36728 2008-12-19 04:08 FilePoster\FilePoster.aps
文件 2086 2008-12-19 23:53 FilePoster\FilePoster.clw
文件 2209 2008-12-18 20:18 FilePoster\FilePoster.cpp
文件 4204 2008-12-19 03:07 FilePoster\FilePoster.dsp
文件 543 2008-12-18 20:00 FilePoster\FilePoster.dsw
文件 1368 2008-12-18 20:00 FilePoster\FilePoster.h
文件 58368 2008-12-19 23:53 FilePoster\FilePoster.ncb
文件 54784 2008-12-19 23:53 FilePoster\FilePoster.opt
文件 254 2008-12-19 23:53 FilePoster\FilePoster.plg
文件 6836 2008-12-19 04:08 FilePoster\FilePoster.rc
文件 11914 2008-12-19 23:52 FilePoster\FilePosterDlg.cpp
文件 1963 2008-12-19 22:51 FilePoster\FilePosterDlg.h
文件 3651 2008-12-18 20:00 FilePoster\ReadMe.txt
文件 1001 2008-12-18 20:11 FilePoster\RecvDlg.cpp
文件 1229 2008-12-18 20:11 FilePoster\RecvDlg.h
文件 225280 2008-12-19 23:52 FilePoster\Release\FilePoster.exe
文件 1078 2008-12-18 20:00 FilePoster\res\FilePoster.ico
文件 402 2008-12-18 20:00 FilePoster\res\FilePoster.rc2
文件 1243 2008-12-19 03:52 FilePoster\resource.h
文件 212 2008-12-18 20:00 FilePoster\StdAfx.cpp
文件 1074 2008-12-18 20:16 FilePoster\StdAfx.h
目录 0 2008-12-20 00:47 FilePoster\Debug
目录 0 2008-12-20 00:47 FilePoster\Release
目录 0 2008-12-18 20:00 FilePoster\res
目录 0 2008-12-19 23:53 FilePoster
----------- --------- ---------- ----- ----
2616043 26
相关资源
- 鼠标左键准确定位MFC基于对话框的滑
- VC++2005测试版运行库 Microsoft.VC80.Debu
- 基于MFCVC6.0的简单计算器程序
- Visual C++程序设计与应用教程课后习题
- 猎豹网校C++ Primer初中高全套无密版
- MFC实时网络连接装状况监测代码
- VC++基于mfc 实现对话框打开读取txt文件
- 巴特沃斯低通滤波器的MFC程序
- Visual C++ Build Tools 2015 离线包.part1/7
- vc++ 2005 express 完整安装包
- MFC创建UI线程
- mfc矩阵运算器
- 基于MFC的BMP图像处理
- VC++之MFC类库中文手册一怀去意---
- PE文件格式解析MFCC++源码
- VS2010之MFC入门到精通教程1-55全部
- MFC写的windows网络热点共享源代码
- mfc读取excel
- Visual C++开发大全提高卷)光盘资料
- MFC视频播放器(带播放列表VC++6.0源代
- vs使用mfc实现全屏截屏和自定义区域截
- 基于MFC的软键盘
- VC++调用大漠插件
- VC++用MKL产生正态分布随机数、计算样
- 基于MFC仿QQ聊天程序设计完整教程
- MFC_Clock.zip
- 飞秋基于c语言实现
- 梅尔倒谱系数MFCC的matlab代码
- mfc绘制数学函数图像
- mfc生成excel-pdf图表
评论
共有 条评论