Is it possible to iterate through an Xml Document to generate the list of options in a Choose One dialog?
So if I had an Xml Document like
[FruitChoices]
[Fruit type="Apple" /]
[Fruit type="Orange"/]
[Fruit type="Pear" /]
[/FruitChoices]
I could use some kind of XPath like /FruitChoices/Fruit/@type and have that populate my "Choices" in a choose one dialog?
My goal here is that I'll pull info out of a database into a temp xml document, and then load that xml document into some variables, and a choice dialog.
Thanks,
-Jeff