Hi everyone i have a little problem. I get the items from this array
this.HeaderFields = new string[]{ "PROJ_ID", "MODEL", "ESN", "LOCATION", "DATATYPE", "TESTTYPE", "TEST", "TRRDG", "RDG", "TESTDATE", "TESTTIME" };
and set them into a CheckedListBox with this line of code
checkedlstBoxHeaderField.Items.AddRange(settings.HeaderFields);
Controls.Add(checkedlstBoxHeaderField);
That works. When i open my winforms i want to check some of the values and than with OK Button to go nextStep and then when i reopen the form i want to see all items checked and unchecked. I try so
settings.HeaderFields = checkedlstBoxHeaderField.CheckedItems.OfType<string>().ToArray();
but with these line of code i became just the checked items. Please help....