/ Forums / Advansys Formativ / Formativ Creator / TRzCheckList Language reference

  • Creator
    Topic
  • #3584
    computech
    Participant

      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!

    • Author
      Replies
    • #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

        #5533
        Support 1
        Participant

          Thanks for your post MA!

          Regards,
          Advansys Support

          #5534
          computech
          Participant

            Thank you very match ! Smile

            #5535
            Support 1a
            Participant

              No problems.

            Viewing 4 replies - 1 through 4 (of 4 total)
            • You must be logged in to reply to this topic.