VS Express 2012
I hope I've got the right forum. I am using the following code to write elements of my DataGridView out to a text file for future import.
ParmWriter.Write("C1R1: " & DataGridView1.Item(0, 0).Value)
My DatagridView has 5 columns and 5 rows. 3 of the columns are ComboBoxes, and 2 are TextBoxes. When I change a value in a ComboBox the changed value is correctly written to my text file. But, if I change a value in one of the TextBoxes, the new value is not written to the text file, in fact all I get is the leading "C1R1:". How can I get VS to recognize and retain the changed values in my DataGridView?
Thanks,
Paul Hudgens
Denver
I hope I've got the right forum. I am using the following code to write elements of my DataGridView out to a text file for future import.
ParmWriter.Write("C1R1: " & DataGridView1.Item(0, 0).Value)
My DatagridView has 5 columns and 5 rows. 3 of the columns are ComboBoxes, and 2 are TextBoxes. When I change a value in a ComboBox the changed value is correctly written to my text file. But, if I change a value in one of the TextBoxes, the new value is not written to the text file, in fact all I get is the leading "C1R1:". How can I get VS to recognize and retain the changed values in my DataGridView?
Thanks,
Paul Hudgens
Denver