I'm a newbie and have been having problems figuring out how to use data from a datagridview.combobox to change the value in another datagridview cell on the same form. I have two tables - Location and LocationBatch,which are part of a dataset - each table with some common fields (ie contact, phone, fax) . I have two corresponding forms for these. When I update the common fields in the Location form, then close it and open the BatchLocation form, I would like to have the ability to update the corresponding LocationBatch fields by pressing a button.
When the button is pressed, it should retrieve the data from a Location table in my dataset. Since a combobox in the same row is connected to the Location table via a binding source, I was trying to extract data from it. It displays the list of location names. I have tried for hours and can't figure it out. Very frustrated! I'd appreciate some help and/or a good site to go to that shows how to do common data tasks such as this in .net.