I see no other applicable threads for such questions as the following:
The word "one" shows on the screen as expected, but no longer when I put the ListView into the Panel of a ScrollView. Why?
The code:
Sub Activity_Create(FirstTime As Boolean)
Dim SV As ScrollView
Dim Pnl As Panel
Dim LstVw As ListView
SV.Initialize(100)
Pnl.Initialize("")
Activity.AddView(SV,100,100,200,200)
Pnl=SV.Panel
LstVw.Initialize("")
'Activity.AddView(LstVw,100,100,200,200)
LstVw.AddSingleLine("one")
SV.Pnl.AddView(LstVw,100,100,200,200)
End Sub
Ultimately, I want two lists side by side that will scroll as one on the screen.
Help!
The word "one" shows on the screen as expected, but no longer when I put the ListView into the Panel of a ScrollView. Why?
The code:
Sub Activity_Create(FirstTime As Boolean)
Dim SV As ScrollView
Dim Pnl As Panel
Dim LstVw As ListView
SV.Initialize(100)
Pnl.Initialize("")
Activity.AddView(SV,100,100,200,200)
Pnl=SV.Panel
LstVw.Initialize("")
'Activity.AddView(LstVw,100,100,200,200)
LstVw.AddSingleLine("one")
SV.Pnl.AddView(LstVw,100,100,200,200)
End Sub
Ultimately, I want two lists side by side that will scroll as one on the screen.
Help!