Hi All,
I am facing one problem.
i have created two column in DataGridview for Calculate purpose but when i press the button value is correct but after the dot. its showing long decimal i want just two value after the dot. please advice about this thanks..
like in datagridview value is showing = 425.56464654646
but i want like that = 425.56
Ranjit PowarPosted Mar 11, 2016, 10:37 PM
string.Format ("{0:F2}",value);
Saillesh PawarPosted Mar 11, 2016, 10:04 AM