santoshM Posted October 9, 2020 Posted October 9, 2020 (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 October 9, 2020 by santoshM
Moderators Melba23 Posted October 9, 2020 Moderators Posted October 9, 2020 Moved to the appropriate forum. Moderation Team 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 ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now