How do I proceed after selecting something from a combo box?
//fruit is a row in my table
nw = New window ("Select fruit",
cb = combo box ("apple", "Mango", "Banana")
cb << Set Selected,
<< Set Width (20),
//Here I select apple
Button Box ("OK",
table1 << SelectWhere(:fruit!=apple) << Delete Rows;
) )
How do I proceed with the analyses by only selecting data corresponding to 'apple' Here is what I want from this code:1, I first make a combo box2. S...