I know this is probably a very basic question, but the answer has so far eluded me...
Could someone please tell me what code I use to access the text and values in a drop down or list box?
For example, if I want to add an item to a drop-down list, and I put
DropDownList1.addItem(TextField1.rawValue, NumericField1.rawValue);
on a button click event, I get nothing....but when I use
DropDownList1.addItem(TextField1.rawValue);
it works just fine(except it only inserts text, no value).
I saw sample code like that above with a comment saying that the first one was the text, and the second one is the value, but when I try it for myself, it doesn't work, and I'm not even sure how to reference the text or value with an app.alert to see what is there.
I'm using Designer 7.0
Help please! I feel terribly stupid...