I\'m writing a Windows Forms app in C#, using Visual Studio 2010.
It has a combo box. I\'ve set the DropDownStyle to \"DropDownList\", and added a few lines to \"Items\
Not Sure if the exact thing can be accomplished but Visual Studio provides a way of storing the values in its Application Settings, through which you can accomplish 2 things:
Select the ComboBox and open its Properties Section, Under (Application Settings), select the (Property Binding), once the Application Settings for ComboBox opens, select the Text property and create an Application Setting. This would be the value which is selected by default the first time the user opens the Form, after that whatever Selection is made by the User, would be reflected the next time the Form is opened.