Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Assigning values to the datagridview cell

How can I assign values of the textbox to the datagridview cell ?

like image 514
Harikrishna Avatar asked Nov 05 '22 15:11

Harikrishna


1 Answers

Simply:

myGridView[col,row].Value = myTextBox.Text;

(or have I misunderstood something?)

like image 199
Marc Gravell Avatar answered Nov 11 '22 16:11

Marc Gravell