how can show the text in the datagridview cell
Hi friends
This is my coding for showing text in the gridview cell. but i does not show the text rather it something like Datagridview.row.
timetablegrid.Rows[row].Cells[column].Value = teachername + roono;
i want to show this teachername+roono in the cell. how can do it
Answers (2)
0
can you try to set some hard coded value like this:
timetablegrid.Rows[row].Cells[column].Value = "sample text";
0
Hi,
gridView.Rows[1].Cells[1].Value= "text here";
Darma