Help on K700i- OK/Send Command Problem...
Hi guys,
I need your help with SE K700i I developed a midlet that can send SMS.
It works well with other phones but in SE K700i when i execute the SEND Command it doesn't do anything and sometimes when I used the BACK command and returned to SEND Command it will send/response...
I tried a lot to solve this problem but I don't know if it's a bug or maybe the code is wrong...By the way this is some parts of the codes.
staticfinal Command sendMsgCommand =new Command("SEND",Command.OK,2);
publicvoid commandAction(Command c, Displayable d){
// TODO Auto-generated method stub
if(c==exitCommand){
notifyDestroyed();
started=false;
}elseif(c==sendMsgCommand){
new Thread(this).start();
}elseif(c==backCommand){
display.setCurrent(itemMenu);
}
Thanks in advance...
Regards,
Psyeu

