private void SaveUsedFileTypesToSettings()
 {
     Util.Properties.Settings.Default.FileTypeCob = FileTypesCheckedListBox.GetItemChecked(0);
     Util.Properties.Settings.Default.FileTypeTxt = FileTypesCheckedListBox.GetItemChecked(1);
     Util.Properties.Settings.Default.FileTypeSrc = FileTypesCheckedListBox.GetItemChecked(2);
     Util.Properties.Settings.Default.Save();
 }
        public ProjectAssistant()
        {
            InitializeComponent();

            FileTypesCheckedListBox.SetItemChecked(0, Util.Properties.Settings.Default.FileTypeCob);
            FileTypesCheckedListBox.SetItemChecked(1, Util.Properties.Settings.Default.FileTypeTxt);
            FileTypesCheckedListBox.SetItemChecked(2, Util.Properties.Settings.Default.FileTypeSrc);
        }