I load nto an arrary 3 strings ..
local aIdx:={}
aIdx:={"Fondatore","Ordinario","Simpatizzante","Servizi"}
On old program I use a combox to select the option
REDEFINE COMBOBOX oCbx VAR cVar ITEMS aIdx ID 210 OF oDlg;
ON CHANGE Sel_Index(oCbx)
Now I want show the option into a tab control
@ nGridBottom, nSplit+2 TABS oApp():oTab ;
OPTION nOrder SIZE oApp():oWndMain:nWidth()-80, 12 PIXEL OF oApp():oDlg ;
ITEMS aIdx
but it not run ok
can U help me pls