DataGridView is bound to the SQL dataset.
The values in the SQL are decimal(18,2).
The format for the columns in the datagridview
are set to C2.
But....
a value 77.59 displays in the grid as 78.00
a value 44.49 displays in the grid as 44.00
The cents are rounding to whole dollars.
I also tried using an N2 format and $#,##0.00
They all gave the same results: rounding off the cents
to whole dollars.
This is not a good thing in a banking application.
:(
