Well currently I'm needing to store various settings, strings, integers, items, etc, within the program settings. So far this has gone without a snag and is working as planned except for one thing, Comboboxes. I have browsed through the various types of settings I can save to and the closest is a "System.Collection.Specialized.StringCollection", however VB is throwing up an error saying that:

Error 1 Value of type 'System.Windows.Forms.ComboBox.ObjectCollection' cannot be converted to 'System.Collections.Specialized.StringCollection'. C:\Users\User\AppData\Local\Temporary Projects\Project\Form1.vb 12 34 Project
So my question is this; How would I go about saving the items in a Combobox?

Thanks.