Hi ,
I tried to create a grid with scrollview.
In designer i put a scrollview, than i filled with label. It look nice but is not scrollable. Can anybody tell how can i do it ? thx
Dim nrrand As Int
Dim nrcol As Int
Dim colwidth As Int
Dim rowhight As Int
rowhight=30dip
nrcol=5
colwidth = sv.Width /nrcol
For y=0 To 120
For i=0 To nrcol -1
l.Initialize("test")
l.TextSize =18
l.Text ="rand"&y&"col"&i
sv.Panel.AddView(l,colwidth*i,rowhight*y,colwidth,rowhight)
Next
Next
sv.FullScroll(True)