I have a checked listbox. I would like to initialise all options to be checked initially. I tried to put the following in the form Load:


For i = 0 To lstChoices.ListIndex - 1
lstChoices.Selected(i) = True
Next i


But the above does not display checks on my screen. How do I display a checkbox with all list entries checked when initialise the form?