I have a form with a gridview. When clicking one row I want it to pass the data to a second form that already exist.
-
That is, I don't want to instantiate a second form (or third or forth..) when I click a new row. I want the form already there, say form2, to show the data row from form1. form1 has the gridview. Click one line and the textboxes on form 2 populate with the new row selected. Is this possible? Thanks!
-
That is, I don't want to instantiate a second form (or third or forth..) when I click a new row. I want the form already there, say form2, to show the data row from form1. form1 has the gridview. Click one line and the textboxes on form 2 populate with the new row selected. Is this possible? Thanks!
-
I'm using VS 2013 to create these webforms. I use a child form that pops up. It's the child form I want to pass changing information to as it changes. That way the user, if they decide to click another row on the datagridform, will pass the new information to the child from already up.
-
I'm using VS 2013 to create these webforms. I use a child form that pops up. It's the child form I want to pass changing information to as it changes. That way the user, if they decide to click another row on the datagridform, will pass the new information to the child from already up.