T
Tim
Hi,
could someone explain why the following simple bit of code does not work?
Private Sub Image1_Click()
For x = 10 To 1
Image1.Width = x
Next x
End Sub
Note:
- the image DOES load properly on form initialisation (just doesn't change
in width when clicked)
- the following DOES work: -
Private Sub Image1_Click()
x = 32 ' arbitrary figure
Image1.Width = x
End Sub
but obviously is a one off action
grateful fro any answers,
tim
could someone explain why the following simple bit of code does not work?
Private Sub Image1_Click()
For x = 10 To 1
Image1.Width = x
Next x
End Sub
Note:
- the image DOES load properly on form initialisation (just doesn't change
in width when clicked)
- the following DOES work: -
Private Sub Image1_Click()
x = 32 ' arbitrary figure
Image1.Width = x
End Sub
but obviously is a one off action
grateful fro any answers,
tim