I wish to create a canvas and use it to draw in a scrollable area. The following sample code gives an error message reporting "Pnl" as an invalid parameter.
Dim SV As ScrollView
Dim Pnl As Panel
Dim Cnv As Canvas
Dim Rct As Rect
SV.Initialize(0)
Pnl=SV.Panel
Pnl.Height=32767
Cnv.Initialize(Pnl) 'invalid parameter reported here
Activity.AddView(SV,0,0,100%x,100%y)
Rct.Initialize(0,0,100%x,100%y)
Cnv.DrawRect(Rct,Colors.Black,True,1)
What would allow that rectangle to be scrolled? Can someone show me how this should be done?
Dim SV As ScrollView
Dim Pnl As Panel
Dim Cnv As Canvas
Dim Rct As Rect
SV.Initialize(0)
Pnl=SV.Panel
Pnl.Height=32767
Cnv.Initialize(Pnl) 'invalid parameter reported here
Activity.AddView(SV,0,0,100%x,100%y)
Rct.Initialize(0,0,100%x,100%y)
Cnv.DrawRect(Rct,Colors.Black,True,1)
What would allow that rectangle to be scrolled? Can someone show me how this should be done?