Hi, I have a grid that is set Right to left.
In one of the columns I can have negative numbers, so I had to set its string format as: {0:#,##0.00;#,##0.00-} in order to see the minus sing in the left side of the number (like this -100 instead of 100-)
when I print this grid, the negative numbers of this column are shown wrong (100-)
the only solution I found at the moment is to set the FormatString = "{0:n}"; before doing the print, and fter doing the print setting back the FormatString = "{0:#,##0.00;#,##0.00-}"; to look it well in the gridView.
any suggestions?