G
Guest
Hi,
I have DataTable and I perform Rows->AddRow on it. New record is created
and it is visible in datagridview. But how to make new record as focused one
after below operation.
DataRow^ dataRow;
dataRow = MyTable->NewRow();
dataRow[1] = "shit happens";
MyTable->Rows->Add(dataRow);
????MyDataGridView->FocusedRow = dataRow ;
Thanks,
Peter
I have DataTable and I perform Rows->AddRow on it. New record is created
and it is visible in datagridview. But how to make new record as focused one
after below operation.
DataRow^ dataRow;
dataRow = MyTable->NewRow();
dataRow[1] = "shit happens";
MyTable->Rows->Add(dataRow);
????MyDataGridView->FocusedRow = dataRow ;
Thanks,
Peter