Categories: Java | UI | Code Examples | How To
This page was last modified 07:52, 29 November 2007.
How to create an online Help Form
From Forum Nokia Wiki
This example shows how to create an online Help Form.
Contents of the JAD file
MIDlet-Name: OnlineHelp MIDlet-Version: 1.0 MIDlet-Vendor: MyCompany MIDlet-Jar-URL: OnlineHelp.jar MIDlet-1: OnlineHelp, , OnlineHelp MicroEdition-Configuration: CLDC-1.0 MicroEdition-Profile: MIDP-1.0 MIDlet-JAR-SIZE: 100
Contents of the JAR file
import javax.microedition.midlet.*; import javax.microedition.lcdui.*; public class OnlineHelp extends MIDlet implements CommandListener { private Display display; private Command back; private Command exit; private Command help; private Form form; private TextBox helpMesg; public OnlineHelp() { display = Display.getDisplay(this); back = new Command("Back", Command.BACK, 2); exit = new Command("Exit" Related Tips
More information
You could for example check the following book for more information
J2ME: The Complete Reference by James Keogh (Publisher: McGraw-Hill, ISBN 0072227109)
