ksr000 Posted May 27, 2015 Share Posted May 27, 2015 hi frnds i need a script to check the ping of different ip,s and websites.. i have not enough knowledge of autoitpls help me where to start Link to comment Share on other sites More sharing options...
Starstar Posted May 27, 2015 Share Posted May 27, 2015 Just create gui {Guicreate()}and an input box and a button and set the input box value to Ping ( "address/hostname") Life is like a coin. You can spend it Anyway as you wish and for your kind information. "you can spend it only once." Link to comment Share on other sites More sharing options...
jguinch Posted May 27, 2015 Share Posted May 27, 2015 OK.Start with the help file. Starstar 1 Spoiler Network configuration UDF, _DirGetSizeByExtension, _UninstallList Firefox ConfigurationArray multi-dimensions, Printer Management UDF Link to comment Share on other sites More sharing options...
Starstar Posted May 27, 2015 Share Posted May 27, 2015 (edited) $g=GUICreate("Ping",200,100) $b=GUICtrlCreateButton("Check",140,70,50,20) $i=GUICtrlCreateInput("",10,10,100,20) $l=GUICtrlCreateLabel("wait...",10,80,80,20) GUISetState(@SW_SHOW) While 2 $msg = GUIGetMsg() Switch $msg Case $b $png=ping($i) ControlSetText("","",$l,$png) Case -3 Exit EndSwitch WEndfirst step for you....... Edited May 27, 2015 by Starstar Life is like a coin. You can spend it Anyway as you wish and for your kind information. "you can spend it only once." Link to comment Share on other sites More sharing options...
Moderators JLogan3o13 Posted May 27, 2015 Moderators Share Posted May 27, 2015 ksr000, the example in the help file for Ping does pretty much exactly what you're asking. Is it not working for you? Or did you not bother trying it?@Starstar - you're not doing the OP much good by posting broken code. If you aren't sure of how to help - don't. ksr000 and Starstar 2 "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum! Link to comment Share on other sites More sharing options...
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