Using .net 2.0 .
I want to display a column in a DataGridView as a percentage value, but without the percent sign.
example :
1) say data in data source is 0.1234
2) using a DataGridView column format string of "P2" makes the grid show this value as "12.34 %". What I want to see is : "12.34", i.e. the original value multiplied by 100, but without the percent sign.
I can work around this by using a calculated column with an expression to multiply by 100, but does the Grid provide an easier way ? Assume the grid is used in read-only mode.
Thanks.