CheckedListBox-KeepSettings

TwoWing

Well-known member
Joined
Jan 6, 2006
Messages
71
Location
Near Portsmouth, England
Programming Experience
Beginner
Hello. What is the way to keep the checked or not-checked state of every one of the items in a CheckedListBox when getting out of the program and how can they be the same when getting back into the program? I cannot seem to work it out because the check boxes are part of a proper control.
I am most pleased if you can help. Thank you.
 
VB 2005 makes this easier with application settings but in 2003 you're just going to have to create a object that contains the information you need to save and then save it to disc somewhere yourself. You can use whatever format you like, but if you want to do it the .NET way then you should research serialization.
 
Back
Top