164a165,185 > > void PG_DropDown::SelectFirstItem() { > my_DropList->SelectFirstItem(); > } > > void PG_DropDown::SelectNextItem() { > my_DropList->SelectNextItem(); > } > > void PG_DropDown::SelectPrevItem() { > my_DropList->SelectPrevItem(); > } > > void PG_DropDown::SelectItem(const int n) { > int i; > > my_DropList->SelectFirstItem(); > > for (i=0; i < n; i++) > my_DropList->SelectNextItem(); > }