Hi All,
I want to get the Numeric key associated with QWERTY key in E75 device.
Please help me...
Thanks & Regards,
Ajit
Hi All,
I want to get the Numeric key associated with QWERTY key in E75 device.
Please help me...
Thanks & Regards,
Ajit
Hello Ajit,
how about something like?:
int keyPressed;
char pressed;
..
protected void keyPressed(int keyCode) {
..
keyPressed=keyCode;
..
}
..
pressed=(char) keyPressed;
..
Regards,
r2j7