I have this scenario which I need to know whether or not it’s possible to automate:
- I have a Form with a DataGridView which is displaying data, let’s call it Form1.
- When I double-click a particular cell in the grid I’m opening a new form, let’s call it Form2.
- Form2 also presents a DataGridView, from where I need to select one or more rows, calculate a value based on the selected rows, and when Form2 is closed I must to pass that calculated value back to Form1.
- Once back in Form1, the value passed from Form2 must to be set in the double-clicked cell from Step 2.
Please advise