I use this code to activate it, Another quistion: how to chang ebac.color for the list? ( i want a button to close/ hide the list)
Sub mnuPage4_Click
ScrollView1.Initialize(0)
pnl = ScrollView1.Panel
Activity.AddView(ScrollView1, 0, 0, 100%x, 100%y)
lstChecks.Initialize
For i = 1 To 100
chk.Initialize("")
chk.Text = "Item #" & i
lstChecks.Add(chk)
lbl1.Initialize("")
lbl1.Text = "Value #" & i
lbl1.Gravity = Gravity.CENTER_VERTICAL
pnl.AddView(chk, 0, height * (i - 1), 120dip, height)
pnl.AddView(lbl1, 125dip, height * (i - 1), 120dip, height)
Next
pnl.height = lstChecks.Size * height
Activity.AddMenuItem("Display checked", "mnuChecked")
End Sub