adding values to a Datagrid

  • Thread starter Thread starter Tonya
  • Start date Start date
T

Tonya

Hi All,

I wanted to ask how i can add values from textboxes etc
into a specific coloumn and row of a datagrid.

I.e does the datagrid have coordinates that i can
refernce when i want to add values.
e.g if i want to add a value to the second row and second
column do i write coordinates such as.. (2,2)
 
If your datagrid is databound to a dataSet then you can
alter the dataset's information and refresh the datagrid
and its presentation of the data should be refreshed.

In what context or how is the data in the datagrid driven?
 
Hi,

Does it need to be bound to a datatable to add values to
a datagrid?? Can i not use it like a listview where i
simply state the coloun or row index??
 
Back
Top