CheckedListBox question

  • Thread starter Thread starter Stephen Haunts
  • Start date Start date
S

Stephen Haunts

Hi

Quick question. I've got a checked list box on a form, and when I load my
form I want to set some of the checked states previous to the form being
displayed. How do I do this? So basically some of the items in the list
box need to be checked programatically and not by the user.

Cheers

Steve
 
* "Stephen Haunts said:
Quick question. I've got a checked list box on a form, and when I load my
form I want to set some of the checked states previous to the form being
displayed. How do I do this? So basically some of the items in the list
box need to be checked programatically and not by the user.

\\\
Me.CheckedListBox1.SetItemChecked(1, True)
///
 
Back
Top