, SelectedRows, , . , , ( , , , ), :
foreach(DataGridViewRow row in DataGridView1.SelectedRows)
{
// Do something with row.Cells["CustID"].Value;
// Do something with row.Cells["ContractID"].Value;
// Do something with row.Cells["TotalPayment"].Value;
}
, , DataGridView SQL-. , , /- / . , , DataFormatString DataColumn DataColumn . :
...
DataTable dt = new DataTable();
dt.Load(dr);
dt.Columns["TotalPayment"].DataFormatString = "C";
dt.Columns["MonthlyInstallment"].DataFormatString = "C";
dt.Columns["TotalCommission"].DataFormatString = "C";
dataGridView1.DataSource = dt;
, , , ( ). ORM (, VS DataSet Designer, LINQ2SQL, EntityFramework ..), /. , , , (, , , , /column/cell painting ..).
$0,02.