xbrowse Border
Posted: Fri Nov 10, 2023 2:33 pm
how can I have the black border at the right side of the xbrowse after the scrollbar ?
I made
Code: Select all | Expand
@ 40, 10 XBROWSE oBrw OF oDlg SIZE 300, -20 PIXEL ;
AUTOCOLS DATASOURCE oDbf NOBORDER
WITH OBJECT oBrw
:lDrawBorder := .t.
:nClrBorder := CLR_BLACK
END
If I make
oBrw:lVScroll := .f.
oBrw:lhScroll := .f.
the border is painted good but I need to use Vscroll
I think we need to tell the xbrowse class that when there is vertical scrolling the border must be drawn after the scroll
any solution ?