/ Forums / Advansys Formativ / Formativ Creator / TRzCheckList Language reference / Reply To: TRzCheckList Language reference

#5536
MA
Participant

    quote:


    Originally posted by computech:
    Hello All!

    I have created small form with TRzCheckList object.

    Now i would like to select checked items, however, I find none information about RzListBox.

    How can I select (find ) checked items?

    Thanks!


    See the response from support about the documentation. The code below shows the checked items of the TRzCheckList.

    dim x
    dim iCounter

    iCounter = MainDlg.rzChkList.items.count

    for x = 0 to iCounter -1
    msgbox MainDlg.rzChkList.Items.Strings(x) & vbcrlf & MainDlg.rzChkList.ItemChecked(x)
    next

    Hope this helps.
    MA