please help, may i add item/record to a grid row programmingly?

  • Thread starter Thread starter Leal Ting
  • Start date Start date
L

Leal Ting

may i add item/record to a grid row programmingly?

Does DataGrid can do it? or i should choose another control?

(e-mail address removed)
 
yes, you can if your data source is a DataSet then, just use
DataGrid.SetDataBinding(DataSet,"TableName");
otherwise
DataGrid[int rowindex,int columnindex]
 
Back
Top