[Tutorial] Creating an advanced refresher
Ill teach you guys how to make an advanced refresher now
Firstly Read this tut and do it..
http://forum.logicalgamers.com/tutorials/28522-tutorial-creating-simple-refresher.html
K now lets add 3 more buttons
Name them
Safe Refresher
Quick Refresher
Moderate Refresher
Now we want each of the refresher to have specific timings at which they run...
So...
Lets code the safe refresher
This means that the web browser will refresh every 15 secs
Remember... to press the start button ....
Now for the Quick refresher
This will refresh the web browser every 2 sec
Finally the moderate refresher
This will refresh the web browser every 7 sec
There you go
You now have a refresher that can refresh at different times according to the user
My next tut will be on how to have user input
+Rep or hit the thanks button please
Firstly Read this tut and do it..
http://forum.logicalgamers.com/tutorials/28522-tutorial-creating-simple-refresher.html
K now lets add 3 more buttons
Name them
Safe Refresher
Quick Refresher
Moderate Refresher
Now we want each of the refresher to have specific timings at which they run...
So...
Lets code the safe refresher
Timer1.Interval = 15000This means that the web browser will refresh every 15 secs
Remember... to press the start button ....
Now for the Quick refresher
Timer1.Interval = 2000This will refresh the web browser every 2 sec
Finally the moderate refresher
Timer1.Interval = 7000This will refresh the web browser every 7 sec
There you go
You now have a refresher that can refresh at different times according to the user
My next tut will be on how to have user input
+Rep or hit the thanks button please

