Ughh the last thing I get held up on is refreshing :/
Okay. So I have the option of having a list box or text edit box (I hate text boxes since you can't hilight text in them) that by default contains only one line "Existing comments go here"
And when a user presses a button below, a function is run that feeds back a list "All_Comments" = {"A", "B"};
I'd like to replace that "Existing comments go here" in the box I use with the items from my list. :) Unfortunately, nothing I am trying is working.
I've tried refreshing, reshowing, appending... maybe I'm not going it right. Here is a simple example I can learn from:
disp = {"INSERT HERE"};
nw1 = New Window("NEW STUFF",
lb= List Box(disp)
);
All_Comments={"SOAP","FOOD","PUPPIES"};
lb << Append( List box(All_Comments));