URLDownloadToFile进度条

发布于 2024-08-07 23:19:17 字数 233 浏览 2 评论 0原文

我正在使用 MASM 构建一个下载程序,但问题是我不知道如何使用进度条来显示下载进度,我正在使用 URLDownloadToFile,如下所示:

invoke URLDownloadToFile, NULL, chr$("http://masm32.masmcode.com/masm32/m32v10r.zip"), chr$("D:\test.zip"), 0, 0

最好的问候。

I'm using MASM to build a download program, but the thing is that i don't know how to use a progress bar to show the progress of the download, i'm using URLDownloadToFile like this:

invoke URLDownloadToFile, NULL, chr$("http://masm32.masmcode.com/masm32/m32v10r.zip"), chr$("D:\test.zip"), 0, 0

Best Regards.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

万劫不复 2024-08-14 23:19:17

哇,你一定喜欢痛苦...结合 asm 和 COM...

根据 MSDN 文档 URLDownloadToFile 的最后一个参数称为 lpfnCB,它是指向调用者的 IBindStatusCallback 接口的指针,调用者的 OnProgress 方法将被调用以报告下载进度。

wow, you must love pain... combining asm and COM....

According to the MSDN documentation the last parameter of URLDownloadToFile is called lpfnCB, a pointer to the IBindStatusCallback interface of the caller whose OnProgress method will be called to report download progress.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文