brodie28 Posted July 22, 2006 Posted July 22, 2006 Is there a function that checks for an active internet connection?
Valuater Posted July 22, 2006 Posted July 22, 2006 maybe... $var = Ping("www.AutoItScript.com",250) If $var Then; also possible: If @error = 0 Then ... Msgbox(0,"Status","Online, roundtrip was:" & $var) Else Msgbox(0,"Status","An error occured with number: " & @error) EndIf Straight from help 8)
brodie28 Posted July 22, 2006 Author Posted July 22, 2006 (edited) Where in help was it? I was thinking of pinging google or something, but I thought it might have its own function. Edit: Found it in help under the ping command. Edited July 22, 2006 by brodie28
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