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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top