ListView scroll bar
Posted: Fri Apr 24, 2015 8:30 pm
				
				If I run the following code;
This is the ListView gadget help example.
In Windows the vertical scrollbar for the ListView Gadget has arrow buttons that will allow me to select forward or backward one item at a time.
In Linux we have no such buttons appearing. How do I get the same functionality in Linux for the ListView?
			Code: Select all
  If OpenWindow(0, 0, 0, 270, 140, "ListViewGadget", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
    ListViewGadget(0, 10, 10, 250, 120)
    For a = 1 To 12
      AddGadgetItem (0, -1, "Item " + Str(a) + " of the Listview") ; define listview content
    Next
    SetGadgetState(0, 9) ; set (beginning with 0) the tenth item as the active one
    Repeat : Until WaitWindowEvent() = #PB_Event_CloseWindow
  EndIfIn Windows the vertical scrollbar for the ListView Gadget has arrow buttons that will allow me to select forward or backward one item at a time.
In Linux we have no such buttons appearing. How do I get the same functionality in Linux for the ListView?









