Hello,
after new compiling with FWH 10.2,
all my xBrowse- oLbx:lHScroll / oLbx:lVScroll defines from Resources
don't work anymore ( Scrollbars missing ).
Changing inside Resources is OK.
0 | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_HSCROLL | WS_TABSTOP
With 10.1 it was OK.
Any Changes needed ?
oLbx70:bClrSelFocus = { || { 0, 16512957 } }
oLbx70:bClrSel = { || { 0, 10853885 } }
oLbx70:nRecSelColor = 15512898
Doesn't work anymore :
oLbx70:lHScroll := .T.
oLbx70:lVScroll := .T.
oLbx70:lFooter := .T.
oLbx70:nRowHeight := 25
oLbx70:nFooterHeight := 7
I tested from Source : it works
I added in sample < testxbr3.prg > :
static function RddBrwRes()
local oDlg, oBrw, oCol, cAlias := cGetNewAlias( "CUST" )
local aGrad := {{ 0.50, CLR_RED, CLR_YELLOW }, { 0.50, CLR_YELLOW, CLR_RED }}
cFunc := ProcName( 0 )
USE CUSTOMER NEW ALIAS (cAlias) SHARED VIA "DBFCDX"
SET ORDER TO TAG FIRST
GO TOP
DEFINE DIALOG oDlg RESOURCE "TEST" //FONT WndMain():oFont
REDEFINE XBROWSE oBrw ID 101 OF oDlg ;
...
...
oBrw:lVScroll := .F.
oBrw:lHScroll := .F.
doesn't work
Scrollbars are still visible
ACTIVATE DIALOG oDlg CENTERED ON INIT oBrw:SetFocus()
(cAlias)->( dbCloseArea() )
return nil
Best Regards
Uwe