M
Maarten
public void updategridrow(int couner, int index)
{
DataOut.Rows[index][1]= couner;
DataGridOut.Refresh();
}
when i do this from the form where the datagrid is on, it works fine
but it wont from an other form
then it says that the row doesnt exist in the table.
????????
Maarten
{
DataOut.Rows[index][1]= couner;
DataGridOut.Refresh();
}
when i do this from the form where the datagrid is on, it works fine
but it wont from an other form
then it says that the row doesnt exist in the table.
????????
Maarten