how to format datagrid data in to decimal numbers
C#
2
Posts
2
Posters
0
Views
1
Watching
-
I am trying to format datagrid data in C# using windows applications but i cannot get it right.I want to display something like this 4.20 but it gives me 4,2000 in my datagrid.
i think u want to display in 1000's, 10000's format of ur currency is it?... if its the case means u can't format it by datagrid format options u have to divide it by 1000 or 10000 like that only and then u can format the string by stringvalue.tostring("n2") VMSSanthosh