Syntaxe Posted December 1, 2008 Posted December 1, 2008 Hello! I am trying to make a easy internet checker, to check if there is internet access on that machine. I use the ping function, anyways. What I could need is to know how I can update a piece of text while the window (form) is running? So if it looses internet, it could switch over from showing "Online" to "Offline". Whould be nice Thanks!
FireFox Posted December 1, 2008 Posted December 1, 2008 Hello! I am trying to make a easy internet checker, to check if there is internet access on that machine. I use the ping function, anyways. What I could need is to know how I can update a piece of text while the window (form) is running? So if it looses internet, it could switch over from showing "Online" to "Offline". Whould be nice Thanks!Hi, Simply use guictrlsetdata GuiCreate("",250,30) $label=Guictrlcreatelabel("Offline",5,5,240,20) GuiSetState() Sleep(2000) Guictrlsetdata($label,"Online") Sleep(2000) Guictrlsetdata($label,"exiting...") Sleep(250)
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