Question : Passing datagrid data between form fields

Hi

I an very new to VS C#, and I have added a datagrid to my form to display data from the database.  If the user selects a row on the datagrid, I want to open up a new form, with text fields that populates with the selected data from the datagrid.  Can anyone help?  

Answer : Passing datagrid data between form fields

And although I didn't do it, you would have to have something to assign that column value to..

MyColumnNameTextBox.Text = DataSet.Tables("MyTable").Rows(myRow).Item("MyColumnName");

Random Solutions  
 
programming4us programming4us