Message 1 of 5
Inventor Ilogic multiple selection window

Not applicable
04-01-2021
11:04 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I am wanting some help creating an Ilogic rule to allow me to pick multiple selections and select "OK" once and having the popup window close upon selecting "OK".
I currenly am required to pick my selection and press okay individually for each selection and am required to press the X to have the code work each selection.
below is a snip of my current selection window and the code that completes it.
What I want to be able to do is have a multiple selection (yes/no) selection for each selection within 1 window.
see the microsoft paint visual of what I am wanting.
Dim oTypes_Array As New ArrayList oTypes_Array.Add("SELECTION 1") oTypes_Array.Add("SELECTION 2") oTypes_Array.Add("SELECTION 3") oTypes_Array.Add("SELECTION 4") oTypes_Array.Add("SELECTION 5") oTypes_Array.Add("SELECTION 6") oTypes_Array.Add("SELECTION 7") oTypes_Array.Add("SELECTION 8") Dim oSelected As New ArrayList While True oTypes_Selected = InputListBox("SELECT TYPE:", oTypes_Array, oTypes_Array(0), oRuleNo, X_oProp_Array) If IsNothing (oTypes_Selected) Then Exit While oSelected.Add(oTypes_Selected) End While For Each oText In oSelected MessageBox.Show(oText, "Selected items") Next