Wb-FreeKill 0 Posted October 31, 2004 This aint working, why? Try insert this link to the input boxhttp://www.ige.dk/files/freekill/PC-Info(DK).exe#Include <GUIConstants.au3> WinClose("Download maneger", "") GUICreate("Download maneger", 390,250) GUICtrlCreatelabel ("Download 1", 10, 20, 300, 20) $dl1 = GUICtrlCreateInput ("", 10, 35, 200, 20) ;insert link to the file $knap = GUICtrlCreateButton ("Download file",250,30,100,25);download button GuiSetState(@SW_SHOW) While 1 $msg = GUIGetMsg() if $msg = $GUI_EVENT_CLOSE then ExitLoop endif if $msg = $knap then InetGet($dl1, "C:\file.exe") endif wend Share this post Link to post Share on other sites
Wb-FreeKill 0 Posted October 31, 2004 O, that was simple, it works, thx Share this post Link to post Share on other sites