views:

90

answers:

1

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

+1  A: 

Simply:

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

(or have I misunderstood something?)

Marc Gravell
Ohh no.. It works as I want...Thanks...
Harikrishna