Getting value from DataGridView
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
Quote:
Hello, I am trying to get the value of the cells with the data table view, but nullptr is entered there, although the data in the table is present. Please help to deal with this problem.
for (int k = 0; k < dataGridView1->Rows->Count; k++)
{
if (tmp == dataGridView1[2, k]->Value->ToString())
{
check = false;
}
}