Para poner color al Header y Footer del xBrowse con ADO hago lo siguiente y funciona muy bien
- Code: Select all Expand view RUN
oBrw:bClrHeader := { || {CLR_WHITE,CLR_BLACK} }
oBrw:bClrStd := { || {CLR_BLACK,CLR_WHITE} }
oBrw:bClrFooter := { || {CLR_WHITE,CLR_BLACK} }
oBrw:nRecSelColor := nRgb(255,255,255)
oBrw:bClrSel := { || {CLR_BLACK,CLR_WHITE} }
oBrw:bClrSelFocus := { || {oApp:nFClrFocus,oApp:nBClrFocus} }
oBrw:SetAdo(oRsHdr)
oBrw:CreateFromResource(200)
Sin embargo el siguiente código usado con DBFs no me respeta los colores asignados
- Code: Select all Expand view RUN
oBrw:bClrHeader := { || {CLR_WHITE,CLR_BLACK} }
oBrw:bClrHeader := { || {CLR_BLACK,CLR_BLACK} }
oBrw:bClrStd := {|| IF( (cOperacion)->(OrdKeyNo()) % 2 == 0 ,{ CLR_BLACK, oApp:nRowParClr },{ CLR_BLACK, oApp:nRowNonClr }) }
oBrw:bClrFooter := { || {CLR_WHITE,CLR_BLACK} }
oBrw:bClrFooter := { || {CLR_BLACK,CLR_BLACK} }
oBrw:nRecSelColor := nRgb(255,255,255)
oBrw:bClrSel := { || {CLR_BLACK,CLR_WHITE} }
oBrw:bClrSelFocus := { || {CLR_BLACK,CLR_YELLOW} }
oBrw:SetRDD()
oBrw:CreateFromResource(200)
Donde puede estar mi falla ?.
Saludos y gracias