Make the main menu visible.
try {
// First, clear the list.
for (int i=list.size()-1; i>=0; i--) {
list.delete(i);
}
// Now, populate the list.
for (int i=0; i<inbox.size(); i++) {
ShortMessage sm = (ShortMessage) inbox.elementAt(i);
list.append(UIConstants.TXT_FROM+sm.from, null);
}
} catch (Exception e) {
System.out.println("setInbox Exception: " + e);
}