/ Forums / Advansys Formativ / Creating Solutions with Formativ / How do I use TrZCheckGroup properly? / Reply To: How do I use TrZCheckGroup properly?

#7669
Support 1
Participant

    I think your code omits the Items property of TRzCheckGroup. The following edited version of your code should do the job:

      for x = 0 to WSFORM.Request_Type.Items.Count - 1
        if WSFORM.Request_Type.ItemChecked(x) then
          iCheckedItems = iCheckedItems & WSFORM.Request_Type.Items.Strings(x) & vbCrLf
        end if
      next
    

    I hope this helps.

    Regards,
    Advansys Support