I need to get an image to move a number of twips at a timer interval determined by a variable (no problem) for a number of iterations through a for/next loop (problem).
I've tried it without variables without success:
first:
Form_Load()
Dim jumps as Integer
jumps = 1
For jumps = 1 To 5
Image1.Left = Image1Left + 200
Image1.Top = Image1.Top - 50
Timer4.Enabled = True
MiniCAM.Refresh
Next
then the timer, with interval of 1000:
Private Sub Timer4_Timer()
Label9.Visible = True
Timer4.Enabled = False
End Sub
Result is a single iteration that moves the image left +200 up by 50. Label9 does it's thing once, after 1 second, but that's all.
I've spent too many hours trying this different ways - Why doesn't this work?
Thanks in advance!