I'm working on a Windows Forms application created in Visual Studio 2010.
Working with 2 different forms, I have a ComboBox on the first form that is databound to the client table of my database. Also on the first form is a link-label that opens the second form without closing or hiding the first form. The second form is just a textbox used to insert a new row into my client table.
The second form successfully inserts the new row into the database and closes itself.
The question that I have is:
How do I get the comboBox on form1 to refresh it's contents after they have been updated by form2?