A simple ChoiceBox.
What do you think about it?
Add to UDF???
#include <GUIConstants.au3>
;Example START
#include <Array.au3>
$ChoiceArray = StringSplit("Choice 1|Choice 2|Choice 3|Choice 4|Choice 5|Choice 6|Choice 7|Choice 8|Choice 9|Choice 10","|")
$ReturnArray = _ChoiceBox("Choice", $ChoiceArray, 0,"Make your choice")
_ArrayDisplay($ReturnArray, "Choice")
;Example END
;==============================================================================================