[Tutorial] Creating a simple refresher
For all the new programmers like me
here is how you make a simple refresher for Welcome to Gaia | Gaia Online
Make a new project and name it
"Refresher bot" (Or anything u wana name it...)
Now add the following...
2 Buttons
1 Timer
1 Web Browser
Ok now place them however you want to place them
Now lets code the form
Double click it and type in the following code
This will automatically go to gaia as soon as the project is set up...
Next
Go to the 1st button
Name it "Start"
Double click it and lets code it
This will start the timer up
Go to the 2nd button
Name it "Stop"
Double click it and lets code it
This button will stop the timer..
Now the main part
Double click the timer and type in the following code
This will refresh the page at every interval
Remember 1000=1 sec
SO before you test it out go to the timer and configure the interval...
Its default is 100
SO i sujest changing it to 5000
I Will post more tuts on how to make advanced refreshers
Enjoy
+ Rep pweze
here is how you make a simple refresher for Welcome to Gaia | Gaia OnlineMake a new project and name it
"Refresher bot" (Or anything u wana name it...)
Now add the following...
2 Buttons
1 Timer
1 Web Browser
Ok now place them however you want to place them
Now lets code the form
Double click it and type in the following code
Webbrowser1.Navigate("www.gaiaonline.com")This will automatically go to gaia as soon as the project is set up...
Next
Go to the 1st button
Name it "Start"
Double click it and lets code it
Timer1.Enabled = TrueThis will start the timer up
Go to the 2nd button
Name it "Stop"
Double click it and lets code it
Timer1.Enabled = FalseThis button will stop the timer..
Now the main part
Double click the timer and type in the following code
WebBrowser1.Refresh()This will refresh the page at every interval
Remember 1000=1 sec
SO before you test it out go to the timer and configure the interval...
Its default is 100
SO i sujest changing it to 5000
I Will post more tuts on how to make advanced refreshers
Enjoy
+ Rep pweze
