Hi, |
Re: Get multiple selected Items from DOORS Explorer Mathias Mamsch, IT-QBase GmbH, Consultant for Requirement Engineering and D00RS |
Re: Get multiple selected Items from DOORS Explorer Mathias Mamsch - Wed Feb 22 12:25:08 EST 2012 Mathias Mamsch, IT-QBase GmbH, Consultant for Requirement Engineering and D00RS Hi, I stumbled on this just today and thought I would provide some more info. The following demo function lists the selected items:
void getSelectedItemsDemo(void)
Any comments? (allthough it's been a while :-) Stefan |
Re: Get multiple selected Items from DOORS Explorer DBEcoffeeList;
void showSelectionList(DBExx) { string sHelp; for sHelp in coffeeList do { print sHelp "\n"; } }
voidshowCoffeList() {
DB coffeeBox = create "Coffees"; string coffees[] = {"Mocha", "Sumatra Blue", "Jamaica Mountain", "Mysore", "Kenya", "Java"};
coffeeList = multiList(coffeeBox, "Choose one of:", 5, coffees); button(coffeeBox, "Show", showSelectionList);
show coffeeBox;
print "x";
}
showCoffeList(); |