Is the a way to fill an xbrowse record with color as can be done in an excel spreadsheet?
Thank you
Harvey
Harvey
Is the a way to fill an xbrowse record with color as can be done in an excel spreadsheet?
1) If we want to color the entire browse area,
oBrw:bClrStd := { || { <nForeClr>, <nBackClr > } }
2) If we want to conditionally color one or some rows,
oBrw:bClrStd := { || If( <lCondition>, { <nForeClr_1>, <nBackClr_1 }, { <nForeClr_2>, <nBackClr_2 } ) }
3) To color one entire column, use the above code for oCol:bClrStd := ...
Thanks for the quick response. How can the user set the color in a cell on the fly?