2
Answers

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
Javeed M Shaikh

Javeed M Shaikh

NA 7.8k 69.7k 11y
can you try to set some hard coded value like this:

timetablegrid.Rows[row].Cells[column].Value = "sample text";
0
darma teja

darma teja

NA 493 194.2k 11y
Hi,

gridView.Rows[1].Cells[1].Value= "text here";

Darma