dogsn0t Posted July 6, 2010 Posted July 6, 2010 (edited) #NoTrayIcon Global $file = "c:\users\public\poop\download.txt" Global $dir = "c:\users\public\poop\" Global $path = IniRead($file, "section1", "path", "NotFound") Global $url = IniRead($file, "section1", "link", "NotFound") Global $param = IniRead($file, "section1", "param", "NotFound") Local $hDownload = InetGet($url, $path, 1, 1) MsgBox(0, "", $url) Do Sleep(100) Until InetGetInfo($hDownload, 2) ; Check if the download is complete. If $param = 1 Then Run($path, "") EndIf InetClose($hDownload) ; Close the handle to release resourcs ------------------------------------------------------------------ the ini file exists, there is no error in this ini file, i shall even paste its contents below: [section1] link= path=c:\users\public\poop\awesome.png param=1 -------------------------------------------------------------------- any help would be appreciated, i'm at somewhat of a loss, as "not found" keeps hitting msgbox, yet it clearly is there Edited July 6, 2010 by dogsn0t
water Posted July 6, 2010 Posted July 6, 2010 (edited) You ini file works fine for me.Is the name of the file c:\users\public\poop\download.txt or c:\users\public\poop\download.ini? Edited July 6, 2010 by water My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
jfcby Posted July 6, 2010 Posted July 6, 2010 Make sure that this path to your ini file is correct: Global $file = "c:\users\public\poop\download.txt" jfcby Determined -- Devoted -- Delivered Make your mind up -- to seriously apply yourself -- accomplishing the desired results. **** A soft answer turneth away wrath: but grievous words stir up anger. Proverbs 15:1 KJB ****
water Posted July 6, 2010 Posted July 6, 2010 Or change your script to: #NoTrayIcon Global $file = "c:\users\public\poop\download.txt" If FileExists($file) = 0 Then MsgBox(0,"","File: " & $file & " does not exist") Exit Endif Global $dir = "c:\users\public\poop\" Global $path = IniRead($file, "section1", "path", "NotFound") Global $url = IniRead($file, "section1", "link", "NotFound") Global $param = IniRead($file, "section1", "param", "NotFound") Local $hDownload = InetGet($url, $path, 1, 1) MsgBox(0, "", $url) Do Sleep(100) Until InetGetInfo($hDownload, 2) ; Check if the download is complete. If $param = 1 Then Run($path, "") EndIf InetClose($hDownload) ; Close the handle to release resourcs My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
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