VB.NET - vb.net CheckedListBox

Asked By vijay sami on 05-Sep-03 07:02 AM
Hi,
       I'm using CheckedListBox 4 displaying the data. checking the multiple check box at the time of selecting data. But I don't want to disappear the check mark once i came again. what the solution?

Save the selected Item checked value

Asked By Dexter Dotnetsky on 05-Sep-03 08:12 AM
either in the AppDomain cache or in a persistence medium such as a database
or a file on the hard drive.
When the form with the CheckedListBox is shown, in the Form_Load handler,
have it query the persisitence medium or Cache for the last value and restore that
to the control.