ppedersen1
Technical User
For Command1.Click the following works in VB 6:
Private Sub Command1_Click()
Image1.Move Image1.Left + 100
Image2.Move Image2.Left - 100
End Sub
Why doesn't the same syntax work in VBA? What is the correct way?
Thanks.
Private Sub Command1_Click()
Image1.Move Image1.Left + 100
Image2.Move Image2.Left - 100
End Sub
Why doesn't the same syntax work in VBA? What is the correct way?
Thanks.