Jump to content

Recommended Posts

Posted (edited)

iam trying to call URLDownloadToFile  function with callback currently callback is not firing

this is my code plz help

#include <AutoItConstants.au3>
#include <MsgBoxConstants.au3>
#include <GUIConstantsEx.au3>


; Create Stub
 ;$hStub = _DllCallBack ("_OnProgress", "Hwnd;ulong;ulong:str")
 Local $hHandle = DllCallbackRegister("_OnProgress", "int", "long;long;long;str")

; Script Start - Add your code below here
Global Const $DOWNLOAD_URL_1 = "https://google.com"
DownloadFile($DOWNLOAD_URL_1,"D:\abc.html")

Func DownloadFile($url,$filename)


DllCall("urlmon.dll", "long", "URLDownloadToFile", "ptr", "none", "str", $url, "str", $filename, "dword", 0, "Ptr", DllCallbackGetPtr($hHandle))
MsgBox($MB_SYSTEMMODAL, "", "download Complete " & @error)
EndFunc


; Callback Procedure
Func _OnProgress($ulProgress, $ulProgressMax,$ulStatusCode,$wszStatusText)
MsgBox($MB_SYSTEMMODAL, "", "Success2")
return 1
;
EndFunc   ;==>_EnumWindowsProc

DllCallbackFree($hHandle)

 

Edited by santoshM
  • Moderators
Posted

Moved to the appropriate forum.

Moderation Team

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...