-
大小: 2KB文件类型: .rar金币: 2下载: 0 次发布日期: 2021-05-27
- 语言: 其他
- 标签: mfc 下载 IBindStatusC
资源简介
用于函数 STDAPI URLDownloadToFileW(LPUNKNOWN,LPCWSTR,LPCWSTR,DWORD,LPBINDSTATUSCALLBACK); LPBINDSTATUSCALLBACK参数的定义类
博客地址:https://blog.csdn.net/qiangzi4646/article/details/80667753
博客地址:https://blog.csdn.net/qiangzi4646/article/details/80667753

代码片段和文件信息
#include “stdafx.h“
#include “BindStatusCallback.h“
#include // for StrFormatByteSize()
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CCallback::CCallback() : m_bUseTimeout(FALSE)
{
}
CCallback::~CCallback()
{
}
HRESULT CCallback::OnProgress ( ULONG ulProgress ULONG ulProgressMax
ULONG ulStatusCode LPCWSTR wszStatusText )
{
// Local variables are declared static so they don‘t have to be reallocated on
// the stack every time. This is safe in this app since I know I‘ll only have
// one thread downloading.
static CString sIEStatusMsg;
static TCHAR szCustomStatusMsg [256];
static TCHAR szAmtDownloaded [256] szTotalSize [256];
UNREFERENCED_PARAMETER(ulStatusCode);
// Did the user hit the Stop button?
//if ( 0 != g_fAbortDownload )
// return E_ABORT;
// Has the timeout period elapsed? 超时停止下载
if ( m_bUseTimeout && CTime::GetCurrentTime() > m_timeToStop )
return E_ABORT;
// Use CString to convert IE‘s status message to a TCHAR string.
if ( NULL != wszStatusText )
sIEStatusMsg = wszStatusText;
else
sIEStatusMsg.Empty();
// Make our own progress message - we‘ll show the amount downloaded and
// the total file size (if known).
StrFormatByteSize ( ulProgress szAmtDownloaded 256 );
StrFormatByteSize ( ulProgressMax szTotalSize 256 );
////显示进度
// if ( 0 != ulProgressMax )
// wsprintf ( szCustomStatusMsg _T(“Downloaded %s of %s“)szAmtDownloaded szTotalSize );
// else
// wsprintf ( szCustomStatusMsg _T(“Downloaded %s (total size unknown)“)szAmtDownloaded );
// Report the progress back to the main window.
//if ( 0 != ulProgressMax )
// {
// m_pDlg->ProgressUpdate ( sIEStatusMsg szCustomStatusMsg
// int( 100.0 * ulProgress / ulProgressMax) );
// }
//else
// {
// m_pDlg->ProgressUpdate ( sIEStatusMsg szCustomStatusMsg 0 );
// }
return S_OK;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2353 2018-04-24 14:22 BindStatusCallback.cpp
文件 2519 2018-04-24 14:22 BindStatusCallback.h
----------- --------- ---------- ----- ----
4872 2
相关资源
- dotnet 写字板 实验 源代码 不好请要不
- 基于MFC扩展CListCtrl子项显示图片并叠
- 黑白棋(带简单AI)
- python实现的ftp自动上传、下载脚本
- MFC程序-碰撞的小球
-
Cme
taFileDC的使用示例 - ado数据库MFC图书管理系统vs2010
- mfc单文档窗体画线与写字
- [免费]MFC制作目录树
- STM32F103 DS18B20 V3.5.0固件库驱动程序工
- MFC读三维模型obj文件
- QT 实现文件下载
- 画图程序MFC/VC/VC CRectTracker 串行化
- MFC网络编程实例
- c 程序判断离散数学中命题公式
- 30秒倒计时器完整版下载
- MFC控件动态拖动
- MFC中OpenGL面和体的绘制以及动画效果
- 430系列单片机USBFET下载驱动
- c MFC 画多边形
- RSA AES DES ECC加密算法源码
- Microsoft基本类库 (MFC)(C 库)
- vc利用MFC底层开发的二维GIS管理软件,
- (MFC) 时钟日期程序
- 一个基于MFC的GridCtrl,提供类似Excel的
- 用MFC实现简单的画图功能
- MFC绘图小软件源代码(可当VC大作业用
- 基于MFC的文件目录树的对话框实现代
- 傻瓜式的图片去水印下载
- VC 6.0 MFC做画图软件
评论
共有 条评论