again , in my assignment, i'm required to move objects within 5 seconds in a certain places. so everysecond during the 5 second they are movin' in an exact places. is it correct to do this by making the 'select case' conditional for timer1.interval ??
Select Case Timer1.Interval
Case 1000
object.Left = 60
object.Top = 100
Case 2000
object.Left = 80
object.Top = 120
Case 3000
object.Left = 100
object.Top = 140
.
.
.
.
and so on....
or is there any other better idea? because this actually make the program too long to look at.
thanks...