I have a Footer for a KeyNo on column 1 which is numeric .. I can justify the header and the data, but How would I left Justify the footer as in this code :
- Code: Select all Expand view RUN
oLbxA:aCols[1]:nDataStrAlign := AL_LEFT // repair number
oLbxA:aCols[1]:nHeadStrAlign := AL_LEFT
oLbxA:lFooter := .t.
oCol := oLbxA:aCols[ 1 ]
oCol:bFooter := { || Ltrim( Str( oLbxA:KeyNo() ) ) + " / " + LTrim( Str( oLbxA:KeyCount() ) ) }
oLbxA:bChange := { || oCol:RefreshFooter() }
Rick Lipkin