Page 1 of 1

xbrowse and bold row

Posted: Thu Mar 25, 2021 12:56 pm
by damianodec
hi,
I have a DBF with field logical (FLAG1) and a lot of records have .T. inside
In xbrowse I'd like to see those records in bold font.
how can I do it?

thank you.

Re: xbrowse and bold row

Posted: Thu Mar 25, 2021 1:36 pm
by nageswaragunupudi

Code: Select all | Expand

oBrw:oDataFonts := {|| If( ( oBrw:cAlias )->FLAG1, oBoldFont, oNormalFont ) }

Re: xbrowse and bold row

Posted: Thu Mar 25, 2021 2:34 pm
by damianodec
done!!!

thank you!