Checked List Box (CheckedState)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hey All,

I want to find whether my first item within my CheckListBox is in a checked
or unchecked state. I tried the following but it did not work, Can anyone
help.

If CkListBoxRoutines.Items.Item(0) = CheckedState.Checked Then
messagebox("Marc")
End If

Any ideas how to do this?

Cheers
 
took a little searching but it's

If ChkListBoxRoutines.GetItemCheckedState(0) = checkState.Checked Then

msgbox

endif
 
marcmc said:
I want to find whether my first item within my CheckListBox is in a
checked or unchecked state. I tried the following but it did not
work, Can anyone help.

If CkListBoxRoutines.Items.Item(0) = CheckedState.Checked Then
messagebox("Marc")
End If

Any ideas how to do this?

if CkListBoxRoutines.getitemchecked(0) then


Armin
 
Back
Top