ComboBox
Posted: Wed Jun 29, 2011 12:32 pm
Hi...
I am new to livecode so this may seem a simple question but I cannot find the answer in the forum or the help files.
I have a Combo box that I have pre entered a list of selections.
I am using
This adds the entered text that was entered in the Ask box to the end of the ComboBox. My question is how would I set the field to display this new last item?
Any help appreciated.
Thanks
Jason
I am new to livecode so this may seem a simple question but I cannot find the answer in the forum or the help files.
I have a Combo box that I have pre entered a list of selections.
I am using
Code: Select all
on menuPick itemPicked
switch itemPicked
case "Living Room"
Put 0.80 into roomsens
break
case "Lounge"
Put 0.80 into roomsens
break
case "Other"
Ask "What is the room name"
put return & it after button "theItem"
put 0.80 into roomsens
break
end switch
call MouseUp of button "Calc" of first card
end menuPick
Any help appreciated.
Thanks
Jason