Results 1 to 1 of 1
-
Adding command buttons on MIDLet Forms
Forms can comprise of command buttons. Adding buttons on the form is easy.
Java Code:private Form form = new Form("Main Form"); private Command exit = new Command("Exit", Command.EXIT, 1); private Command start= new Command("Start", Command.SCREEN, 2); ... form.addCommand(exit); form.addCommand(start);
Similar Threads
-
Adding custom buttons - JOptionPane.showOptionDialog(...)
By Java Tip in forum Java TipReplies: 0Last Post: 12-17-2007, 09:46 AM -
Adding List to MIDlet Display
By Java Tip in forum Java TipReplies: 0Last Post: 11-23-2007, 02:07 PM -
Adding EXIT button on MIDlet form
By Java Tip in forum Java TipReplies: 0Last Post: 11-22-2007, 10:13 AM -
Unable to execute command line command in java
By LordSM in forum New To JavaReplies: 1Last Post: 08-08-2007, 12:23 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks