Monday, February 21, 2011

Assigning values to the datagridview cell.

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

From stackoverflow
  • Simply:

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

    (or have I misunderstood something?)

    Harikrishna : Ohh no.. It works as I want...Thanks...

0 comments:

Post a Comment