Dear All,
I am using xBrowse to display Dbf file. Numeric column are having AGGR_TOTAL at its footer. I have tried to change the picture of the footer but by doing so, the footer disappears.
I used :
oBrw:oCol('Atri Tax' ):nFooterType := AGGR_TOTAL
For n = 2 To Len(aHead_A[1])
If oBrw:aCols[ n ]:nFooterType = AGGR_TOTAL
oBrw:aCols[ n ]:bLClickFooter := { |r,c,f,o| FooterAggrClick( r, c, f, o ) }
oBrw:aCols[ n ]:nFooterType := { || Trans( AGGR_TOTAL , "9,999,999,999.99") } //Line (A)
Endif
Next n
Without this Line(A) makes the footer appear. But the picture is not proper....
Any suggestions....Thnx