logmein Posted June 5, 2009 Posted June 5, 2009 (edited) Try it and comment : expandcollapse popup#include <GUIConstants.au3> #include <WindowsCOnstants.au3> #include <EditCOnstants.au3> #include <ButtonConstants.au3> #include <INet.au3> #Region ### START Koda GUI section ### Form=C:\Documents and Settings\Welcome\Desktop\URL Checker\MAinform.kxf $Form1 = GUICreate("URL Checker 1.1.0", 646, 465, 193, 125) $List = GUICtrlCreateEdit("", 8, 24, 633, 401) GUICtrlSetFont(-1, 9, 800, 0, "Arial") $Label1 = GUICtrlCreateLabel("Copy && Paste your file's URLs here :", 8, 0, 180, 17) $Check = GUICtrlCreateButton("&Check", 224, 432, 75, 25, $BS_DEFPUSHBUTTON) $About = GUICtrlCreateButton("&About", 304, 432, 75, 25, 0) $Exit = GUICtrlCreateButton("&Exit", 384, 432, 75, 25, 0) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Exit Exit Case $Check _check() Case $About MsgBox(262208, "About", _ "URL CHECKER" & @LF & _ "v 1.1.0" & @LF & _ "------------------------------------------------" & @LF & _ "Author : LogMeIn" & @LF & _ "Email : minhthanh.autoit@gmail.com" & @LF & _ "------------------------------------------------" & @LF & _ "All comments are welcome!!!", 0, $Form1) EndSwitch WEnd Func _check() $err = '' $e = '' $split = StringSplit(GUICtrlRead($List), @CRLF) ProgressOn('URL Checker 1.1.0', 'Checking...', 'Spliting...', -1, -1, 2) For $i = 1 To $split[0] If $split[$i] <> '' Then $inet = Ping ($split[$i],4000) ProgressSet(($i * 100) / $split[0], $split[$i], 'Checking...') If $inet = 0 Then $err &= $split[$i] & '(died!)' & @CRLF Else $err &= $split[$i] & '(ok)' & @CRLF EndIf EndIf Next ProgressOff() GUICtrlSetData ($List,$err) EndFunc ;==>_check Try to use these URL : http://www.autoitscript.com/forum/index.php?act=Attach&type=post&id=26158 http://www.autoitscript.com/forum/index.php?act=Attach&type=post&id=26157 http://www.autoitscript.com/forum/index.php?act=Attach&type=post&id=25804 All comments are welcome!!! Edited July 22, 2009 by logmein [font=arial, helvetica, sans-serif][s]Total USB Security 3.0 Beta[/s] | [s]Malware Kill[/s] | Malware Scanner | Screen Hider | Locker | Matrix Generator[s]AUTO-SYNC 1.0 | MD5 Hash Generator | URL Checker | Tube Take [/s]| Random Text[/font]
logmein Posted June 6, 2009 Author Posted June 6, 2009 no comment? [font=arial, helvetica, sans-serif][s]Total USB Security 3.0 Beta[/s] | [s]Malware Kill[/s] | Malware Scanner | Screen Hider | Locker | Matrix Generator[s]AUTO-SYNC 1.0 | MD5 Hash Generator | URL Checker | Tube Take [/s]| Random Text[/font]
Yashied Posted June 6, 2009 Posted June 6, 2009 I would rename it to the Internet File Checker, but no URL CHECKER. Why not just use ping? Thanks anyway. My UDFs: iKey | FTP Uploader | Battery Checker | Boot Manager | Font Viewer | UDF Keyword Manager | Run Dialog Replacement | USBProtect | 3D Axis | Calculator | Sleep | iSwitcher | TM | NetHelper | File Types Manager | Control Viewer | SynFolders | DLL Helper Animated Tray Icons UDF Library | Hotkeys UDF Library | Hotkeys Input Control UDF Library | Caret Shape UDF Library | Context Help UDF Library | Most Recently Used List UDF Library | Icons UDF Library | FTP UDF Library | Script Communications UDF Library | Color Chooser UDF Library | Color Picker Control UDF Library | IPHelper (Vista/7) UDF Library | WinAPI Extended UDF Library | WinAPIVhd UDF Library | Icon Chooser UDF Library | Copy UDF Library | Restart UDF Library | Event Log UDF Library | NotifyBox UDF Library | Pop-up Windows UDF Library | TVExplorer UDF Library | GuiHotKey UDF Library | GuiSysLink UDF Library | Package UDF Library | Skin UDF Library | AITray UDF Library | RDC UDF Library Appropriate path | Button text color | Gaussian random numbers | Header's styles (Vista/7) | ICON resource enumeration | Menu & INI | Tabbed string size | Tab's skin | Pop-up circular menu | Progress Bar without animation (Vista/7) | Registry export | Registry path jumping | Unique hardware ID | Windows alignment More...
logmein Posted June 6, 2009 Author Posted June 6, 2009 (edited) Version 1.1.0 released! Enjoy! Edited July 22, 2009 by logmein [font=arial, helvetica, sans-serif][s]Total USB Security 3.0 Beta[/s] | [s]Malware Kill[/s] | Malware Scanner | Screen Hider | Locker | Matrix Generator[s]AUTO-SYNC 1.0 | MD5 Hash Generator | URL Checker | Tube Take [/s]| Random Text[/font]
logmein Posted July 22, 2009 Author Posted July 22, 2009 No comment ? [font=arial, helvetica, sans-serif][s]Total USB Security 3.0 Beta[/s] | [s]Malware Kill[/s] | Malware Scanner | Screen Hider | Locker | Matrix Generator[s]AUTO-SYNC 1.0 | MD5 Hash Generator | URL Checker | Tube Take [/s]| Random Text[/font]
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