Hi all, how can I create two combo box in a modal? Seems like it only shows the last combo box being displayed. Here is my sample code:
BTW, Im using JMP 15
nw = New Window( "HAMR RO BQST Data Preparation", << modal(),
lineupbox(ncol(1), spacing(5),
Text Box( "Enter Name:" ),
teb3 = Text Edit Box( "", <<set width( 200 ) ),
Text Box( "Select Sex:" ),
cbSex = Combo Box( {"Male", "Female"},
selSex = cbSex << GetSelected());
Text Box( "Select Course:" ),
cbCourse = Combo Box( {"Engineering", "Psychology", "Accounting", "Computer Science", "IT", "Mathematics"},
selCourse = cbCourse << GetSelected());
),
Button Box( "OK",
doetx = doe << get text();
),
);