J2ME- Command

J2ME



Command

Command is a useful item in every application. It tells the program to perform a specific action when the user choose to do so. In other words, the command increases the users' interactivity with your software. A command object can be created by using the following prototype:

Command commadObj=new Command(Label,Type,Priority);

Label is the text to display on the command button. The Type argument specifies the type of command. The values of the Type argument can be Command.BACK, Command.CANCEL, Command.EXIT, Command.HELP, Command.ITEM, Command.OK, Command.SREEN, and Command.STOP. The Priority sets the priority of the command. If the value is 0, it is the highest priority command. The higher the value the lower the priority is.

The command can be attached to the form by using addCommand method of the form. To enable the form to listen to the actions that will perform by the user, you need to set the CommandListener interface to the form by using setCommandListener method.

Form form=new Form("Form");

form.addCommand(commandObj);

form.setCommandListener(this);

The this keyword refers to the current CommandListener interface that the class is currently implemented. This interface has a special method named commandAction. In this method you can write code to response to the command action. In the example code below, when the user clicks on Cancel command the program will exit and the memory use is released. By clicking on the Ok command the program will call the check method and alert whether the user id and password are correct or incorrect.

Example:

import javax.microedition.lcdui.*;
import javax.microedition.midlet.*;

public class Login extends MIDlet implements CommandListener{
private Display display;
private Form form;
private TextField txtname,txtpassword;
private Command Cmdok, Cmdcancel;

public Login() {
display = Display.getDisplay(this);

}

public void startApp() {
form=new Form("Login");
txtname=new TextField("User id:","",250,TextField.ANY);
txtpassword=new TextField("Password:","",250,TextField.PASSWORD);
Cmdok=new Command("Ok",Command.OK, 0);
Cmdcancel=new Command("Cancel",Command.CANCEL,0);

form.append(txtname);
form.append(txtpassword);
form.addCommand(Cmdok);
form.addCommand(Cmdcancel);
form.setCommandListener(this);
display.setCurrent(form);

}

public void pauseApp() {}

public void destroyApp(boolean unconditional) {}

public void commandAction(Command c, Displayable s) {
if(c==Cmdcancel) notifyDestroyed();
else if(c==Cmdok) check();
}

public void check(){
if(txtname.getString().equals("dara") && txtpassword.getString().equals("123")){
Alert al=new Alert("Correct","Welcome!",null, AlertType.INFO);
display.setCurrent(al);
}
else{
Alert al=new Alert("Incorrect","Invalid login!",null, AlertType.ERROR);
display.setCurrent(al);
}
}
}

Note: to read the value of a text field you can use getString() method of the text field object. If you want to write text programmatically to the text field you need to use setString(text value) method.




  • Why and How to learn
  • C programming language?
  • C++ programming language?
  • C# programming language?
  • Java programming language?
  • Python programming language?
  • VB programming language?

comment

Posted comments

Phan Neth, CICI, year 3:

Now it is ok teacher. I can connect to database and select data from it. Than you so much teacher !!!!!

04-30-2013

Dara:

Copy and paste the link below to the address box to learn how to connect C and Mysql server:
http://www.worldbestlearningcenter.com/index_files/cpp-tutorial-connect_mysql_database.htm

04-27-2013

Phan Neth, CICI, year 3:

Hello teacher i want to connect C programming language to MySql server but it have problem. When i compile it always error with library " my_global.h
and mysql.h", so how should i do?

04-27-2013

Phan Neth, Year 3 at CICI,:

I have some problem about connection to mysql server. So I hope teacher can help me. Thank !!!!

04-26-2013

Federico:

Output appears the same also this way:

static void Main(string[] args)
{
int[,] myArray = new int[5, 5];
int row, i;
int n = 1;

for (row = 0; row < 5; row++)
{
for (i = 0; i < 5; i++)
{
myArray[row, i] = n;
if (row == 1 && i == 2) Console.Write(" \t");
else Console.Write("{0} \t", n);

if (n!=26) n++;
if((i+1)%5==0) Console.WriteLine("\n");
}
}
Console.ReadLine();
}

04-13-2013

Dara:

Let pointer p point to the index 1 elem (value=2) of the array.
int *p= a+1;
Let pointer q point to the index 6 elem (value=5) of the array.
int *q= a+6;
-Expression q-p is the subtraction of address of the index 6 element and the address of index 1 elem of the array. So, the result is 5.
-Expression *p+*q is the sum of the value of index 1 elem (2) and the value of index 6 elem (5). So, the result is 7.
In conclusion, the output is 57.

03-28-2013

Anushka :

Find the output of following code
main()
{
int a[] = {1,2,9,8,6,3,5,7,8,9};
int *p= a+1; int *q= a+6;
cout<< q-p <<*p+*q; }

03-28-2013

Dara:

Option Explicit
Dim Cn as New ADODB.Connection
Private Sub_Form_Load()
Cn.Open "Provider=SQLOLEDB; Data Source=ServerName; Initial Catalog=DatabaseName;UserID=UserName; Password=Passw"
End Sub
You will need to replace ServerName with the name of your server (installed SQL Server), DatabaseName withe the name of your data file that you want to connect to, UserName with the name of the user to login to SQL Server, and Passw with the password used to login to SQL Server.

03-13-2013

More>>>

....................................................................................................................Home | Forum | About | Contact
This website intents to provide free and high quality tutorials, examples, exercises and solutions, questions and answers of programming and scripting languages:
C, C++, C#, Java, VB.NET, Python, VBA,PHP & Mysql, SQL, JSP, ASP.NET,HTML, CSS, JQuery, JavaScript and other applications such as MS Excel, MS Access, and MS Word. However, we don't guarantee all things of the web are accurate. If you find any error, please report it then we will take actions to correct it as soon as possible.
Copyright @ 2011-2013 worldbestlearningcenter. All Rights Reserved.
Computer-Wbest
Programming Tips
Download
Related Posts