I am using VS2010 C# datagridview for data entry. The datagridview is empty when user starts and is not bound to any datasource. When they are done entering new rows, I process the datagridview row by row and eventually into the database.
My issue is I need to set values of cells based inputs of other cells in a new row. For example, if the user selects a product from a dropdown in cell 1 of the datagridview, I may need to set the value of cell 2 in the new row to some new value. Is there an easy way to do this, I can't seem to find anyone talking about this?
Thanks for any help!