Make the main menu visible.
try {
this.from = from;
if (display != null) {
// Clear the screen before adding new entries.
for(int i=screen.size()-1; i>=0; i--) screen.delete(i);
// Append the From and Message.
screen.append(UIConstants.TXT_FROM + from);
screen.append(UIConstants.TXT_MESSAGE + message);
// Display the screen.
display.setCurrent(screen);
}
} catch (Exception e) {
System.out.println("showException Exception: " + e);
}