Caption = "This sample application demonstrates the use of the picture clip 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
Attribute VB_Name = "infoform"
Attribute VB_Creatable = False
Attribute VB_Exposed = False
Dim flap As Integer
Private Sub butterfly()
' Alternate between the two bitmaps.
If flap = 0 Then
btrfly.Picture = btrfly1.Picture
flap = 1
Else
btrfly.Picture = btrfly2.Picture
flap = 0
End If
End Sub
Private Sub Form_Load()
infoform.Left = Form1.Left + 150
infoform.Top = Form1.Top + 400
End Sub
Private Sub Okay_Click()
Unload infoform
End Sub
Private Sub Timer2_Timer()
' Note: The Interval property of the timer determines