Here is my code to set the columns of the datagrid control.
VB Code:
  1. dtaGrid.AllowAddNew = False
  2.     dtaGrid.AllowDelete = False
  3.     dtaGrid.AllowUpdate = False
  4.     dtaGrid.Columns.Item(0).Width = 200
  5.     dtaGrid.Columns.Add(1).Caption = "Case ID"
  6.     dtaGrid.Columns.Add(2).Caption = "Case Status"
  7.     dtaGrid.Columns.Add(3).Caption = "Case Type"
  8.     dtaGrid.Columns.Add(4).Caption = "Case Sub Type"
  9.     dtaGrid.Columns.Add(5).Caption = "Branch"

How do I add the rows to this grid control?

Cheers,
Abhijit