I can&#39;t seem to figure out how to make a drop down list with strings from a reader. I have created a drop down list with integers, and I have read that it was possible, but I can&#39;t figure out what I need to implement. If any one has any good examples (XML and C++) that would be great.<br>
<br>If I have this:<br>[code]<br>            &lt;StringVectorProperty name=&quot;CellArrayInfo&quot;<br>                information_only=&quot;1&quot;&gt;<br>                &lt;ArraySelectionInformationHelper attribute_name=&quot;Cell&quot;/&gt;<br>
            &lt;/StringVectorProperty&gt;<br>            &lt;StringVectorProperty name=&quot;CellArrayStatus&quot;<br>                command=&quot;SetCellArrayStatus&quot;<br>                number_of_elements=&quot;0&quot; <br>
                repeat_command=&quot;1&quot; number_of_elements_per_command=&quot;2&quot;<br>                element_types=&quot;2 0&quot;<br>                information_property=&quot;CellArrayInfo&quot;<br>                label=&quot;Cell Arrays&quot;&gt;<br>
                &lt;ArraySelectionDomain name=&quot;array_list&quot;&gt;<br>                    &lt;RequiredProperties&gt;<br>                        &lt;Property name=&quot;CellArrayInfo&quot; <br>                            function=&quot;ArrayList&quot;/&gt;<br>
                    &lt;/RequiredProperties&gt;<br>                &lt;/ArraySelectionDomain&gt;<br>            &lt;/StringVectorProperty&gt;<br>[/code]<br><br>I read that I could change:<br>[code]<br>                number_of_elements=&quot;0&quot; <br>

                repeat_command=&quot;1&quot; number_of_elements_per_command=&quot;2&quot;<br>[/code]               <br><br>to<br>[code]<br>                number_of_elements=&quot;1&quot; <br>[/code]<br><br>but that does not work.<br>
<br>I also tried using the EnumerationDomain with IntVectorProperty. This will only give me a dropdown with integers.<br><br>Note: I&#39;m not looking for this:<br>[code]<br>&lt;EnumerationDomain name=&quot;enum&quot;&gt;<br>
          &lt;Entry text=&quot;Stuff&quot; value=&quot;0&quot; /&gt;<br>           ....<br>[/code]<br><br>If I am not able to do a dropdown with a string, is there a way to only allow one item to be selected in my first sample of xml?<br>
<br>Thanks,<br>Brian<br>