Assigning values to the datagridview cell

.net, c#, datagridview, variable-assignment, winforms

Solution

Simply:

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

(or have I misunderstood something?)

Problem

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

Original source