View attachment 159467
You can switch off the Show Scroll Bar property of the CLV.
In the fill_clv1 subroutine you can add the lines 13 and 14.
You can change the line 5 to test.
I have used some code from my CLV_examples tutorial (page 16).
Private Sub fill_clv1
clv1.Clear
Dim fnames As List = get_filenames
Dim itemlst As List = get_titleitems
For i = 0 To 1 'itemlst.Size -1
Dim item As String = itemlst.Get(i)
Dim fname As String = fnames.Get(i)
Dim note As String = notesmap.Get(item)
Dim pn As Pane = set_clv1_item(i,fname,item,note)
clv1.Add(pn,itemlst.Get(i))
Hdragger.AddDragButtons
Next
Dim sv As ScrollPane = clv1.sv
sv.SetHScrollVisibility("AS_NEEDED")
End Sub
The CLV uses an internal Scrollpane...