View Single Post
  #3 (permalink)  
Old 05-21-2010, 06:38 PM
nicolasWhite nicolasWhite is offline
Knows the basics
 
Join Date: May 2010
Posts: 92
Talking

Hello fellas.
I have played with the programm....none of the jpg files are missing.
Regarding the code:

n = 500
do
addevent("ms"&n,click, "button_click")
n = n + 250
loop until n = 4000

Sub button_click
Timer1.interval = n
Label1.text = n & " msec"
End Sub

Writing these nine lines would have saved you writing 50 lines.
Reply With Quote