This seems like a silly question, but how do I go about setting the
text for items in a list object? In Constructor, the List Items field of
the list's properties isn't editable (as far as I can tell). On the
software side, I tried the following:
CharPtr choiceArray[3] = {"test1", "test2", "test3"};
ListPtr listP = GetObjectPtr(Worksheet1UnbalanceList);
LstSetListChoices(listP, choiceArray, 3);
and find that only the first item ("test1") shows up in the list, and the
other fields are garbage. Any quick answers here?
Michael