Caption = "This small application demonstrates the use of the PicClip control. In addition, it also provides a good example of icon animation (try minimizing the main form while the top is spinning)."
Height = 1185
Left = 1680
TabIndex = 4
Top = 270
Width = 3360
End
Dim flap As Integer
Sub butterfly ()
' Alternate between the two bitmaps whenever code is run
If flap = 0 Then
btrfly.Picture = btrfly1.Picture
flap = 1
Else
btrfly.Picture = btrfly2.Picture
flap = 0
End If
End Sub
Sub Form_Load ()
infoform.Left = form1.Left + 150
infoform.Top = form1.Top + 400
End Sub
Sub Okay_Click ()
Unload infoform
End Sub
Sub Timer2_Timer ()
' Note: The interval property of the timer determines