Click here to Skip to main content
15,899,935 members

Comments by blitzkrieged (Top 2 by date)

blitzkrieged 17-Sep-13 16:17pm View    
Use a ListView and look into setting the SmallImageList/LargeImageList.
blitzkrieged 1-Sep-13 5:35am View    
try something like this:

int row = dataGridView1.Rows.Add(new DataGridViewRow());
DgReport.Rows[row].Cells["InvoiceNumber"].Value = "Total";
DgReport.Rows[row].Cells["OrignalAmount"].Value = dt.Rows[0].Cells["OrgAmount"].Value.ToString();
DgReport.Rows[row].Cells["DueAmt"].Value = dt.Rows[DgReport.RowCount - 1].Cell["UnderPayment"].Value.ToString();