Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Dim hv As HorizontalScrollView
End Sub
Sub Activity_Create(FirstTime As Boolean)
hv.Initialize(1000, "wv")
Activity.AddView(hv, 10dip, 10dip, 300dip, 300dip)
End Sub