Jump to content

Recommended Posts

Posted

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!

Posted

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)

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...