I understand that you want to do this in visual basic using code. What I'm saying is that you'll need two images for the
vb code to use in order to get the rotation effect. Something like this:
Private Sub Form_Load()
Picture1 = Image1
End Sub
-
Private Sub Command1_Click() 'This can be any event
If Picture1 = Image1 Then
Picture1 = Image2
ElseIf Picture1 = Image2 Then
Picture1 = Image1
End If
End Sub
Quote:
Originally posted by buchokoy
i need to do this on vb code not on graphic application
|