Begin ExplicitButtonCtl.ExplicitButton ExplicitButton1
Height = 855
Left = 720
Top = 3240
Width = 1935
Label = "Start"
ForeColor = 0
BackColor = 12632256
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
End
Begin JugglerCtl.Juggler Juggler1
Height = 1935
Left = 1680
Top = 1200
Width = 2295
BeginProperty AppletContext
EndProperty
BeginProperty MaximumSize
PersistedArray = "VB5.frx":0000
EndProperty
Enabled = -1 'True
BeginProperty CodeBase
PersistedArray = "VB5.frx":0060
EndProperty
Active = -1 'True
BeginProperty PreferredSize
PersistedArray = "VB5.frx":0158
EndProperty
ForeColor = 0
Object.Visible = -1 'True
BeginProperty DocumentBase
PersistedArray = "VB5.frx":01B8
EndProperty
BeginProperty Locale
PersistedArray = "VB5.frx":02B0
EndProperty
BackColor = 12632256
BeginProperty Insets
PersistedArray = "VB5.frx":036F
EndProperty
ComponentCount = 0
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
BeginProperty Layout
PersistedArray = "VB5.frx":03E1
EndProperty
AnimationRate = 125
Name = "panel0"
AlignmentY = 0.5
AlignmentX = 0.5
BeginProperty MinimumSize
PersistedArray = "VB5.frx":044B
EndProperty
AppletInfo = " "
End
Begin ExplicitButtonCtl.ExplicitButton ExplicitButton2
Height = 855
Left = 3000
Top = 3240
Width = 1935
Label = "Stop"
ForeColor = 0
BackColor = 12632256
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
End
Begin VB.TextBox Text2
Height = 615
Left = 3960
TabIndex = 3
Text = "Text2"
Top = 5040
Width = 1095
End
Begin VB.TextBox Text1
Height = 615
Left = 2640
TabIndex = 2
Text = "Text1"
Top = 5040
Width = 1095
End
Begin VB.HScrollBar HScroll1
Height = 495
Left = 1080
Max = 0
Min = 200
TabIndex = 1
Top = 4320
Value = 100
Width = 3375
End
Begin VB.Label edf
Caption = "Mouse Coord"
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 720
TabIndex = 4
Top = 5040
Width = 1815
End
Begin VB.Label Label1
Caption = "Visual Basic For JavaBeans"
BeginProperty Font
Name = "MS Sans Serif"
Size = 13.5
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 960
TabIndex = 0
Top = 120
Width = 3855
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub ExplicitButton1_actionPerformed(ByVal modifiers As Long, ByVal actionCommand As String, ByVal ID As Long, ByVal source As Object)
Juggler1.start
End Sub
Private Sub ExplicitButton2_actionPerformed(ByVal modifiers As Long, ByVal actionCommand As String, ByVal ID As Long, ByVal source As Object)
Juggler1.stop
End Sub
Private Sub HScroll1_Change()
Juggler1.AnimationRate = HScroll1.Value
End Sub
Private Sub Juggler1_mouseMoved(ByVal y As Long, ByVal x As Long, ByVal clickCount As Long, ByVal point As Object, ByVal popupTrigger As Boolean, ByVal when As Long, ByVal modifiers As Long, ByVal altDown As Boolean, ByVal metaDown As Boolean, ByVal shiftDown As Boolean, ByVal controlDown As Boolean, ByVal consumed As Boolean, ByVal component As Object, ByVal ID As Long, ByVal source As Object)