Click here to Skip to main content
15,912,082 members
Home / Discussions / Mobile
   

Mobile

 
QuestionSMS via VB DOT NET Pin
msmahmood644-Aug-08 21:39
msmahmood644-Aug-08 21:39 
AnswerRe: SMS via VB DOT NET Pin
fjptlzx4-Aug-08 21:59
fjptlzx4-Aug-08 21:59 
QuestionAbout ListView Create Pin
Member 34113024-Aug-08 18:38
Member 34113024-Aug-08 18:38 
Questionsoft input panel Pin
iayd2-Aug-08 3:41
iayd2-Aug-08 3:41 
AnswerRe: soft input panel Pin
akirilov3-Aug-08 23:24
akirilov3-Aug-08 23:24 
QuestionNew To Mobile Applications Need Help Pin
Krazy Programmer1-Aug-08 22:09
Krazy Programmer1-Aug-08 22:09 
QuestionKeypad mapping Pin
MS_TJ1-Aug-08 1:03
MS_TJ1-Aug-08 1:03 
AnswerRe: Keypad mapping Pin
akirilov1-Aug-08 4:31
akirilov1-Aug-08 4:31 
I'm not sure if I got your question, but here is some pseudo-code:

int RemapKey(int OldKey){
  switch (OldKey){
    case VK_LEFT: if (RotarySwitch = ...) return VK_RETURN
    ...
  }
}

...
case WM_WMKEYDOWN:
  int NewKey = (int)wParam; 
  if ( condition for remaping )RemapKey(NewKey);
  switch (NewKey){
.... standart key handling
  }

You need to keep RotarySwitch with a value, according to rotation.
You need to remap only keys that will change with rotation.

Of course the easiest way is to use a table for remaping, instead of long cases, but I wrote this just to illustrate the idea and the main logic.
GeneralRe: Keypad mapping Pin
MS_TJ1-Aug-08 19:20
MS_TJ1-Aug-08 19:20 
GeneralRe: Keypad mapping Pin
akirilov3-Aug-08 21:38
akirilov3-Aug-08 21:38 
Questionneed to start data connection automatically for my app Pin
Muhammad Rafiq30-Jul-08 4:05
Muhammad Rafiq30-Jul-08 4:05 
QuestionDLL sizes on CE Pin
Jim Crafton29-Jul-08 7:17
Jim Crafton29-Jul-08 7:17 
AnswerRe: DLL sizes on CE Pin
Mike Dimmick31-Jul-08 1:58
Mike Dimmick31-Jul-08 1:58 
GeneralRe: DLL sizes on CE Pin
Mike Dimmick31-Jul-08 4:36
Mike Dimmick31-Jul-08 4:36 
GeneralRe: DLL sizes on CE Pin
Jim Crafton1-Aug-08 10:14
Jim Crafton1-Aug-08 10:14 
QuestionMobile Web Application on Pocket PC 2003 Emulator Pin
Ian Uy29-Jul-08 2:34
Ian Uy29-Jul-08 2:34 
AnswerRe: Mobile Web Application on Pocket PC 2003 Emulator Pin
Slick6926-Aug-08 10:18
Slick6926-Aug-08 10:18 
QuestionProblem to connect PDA with database. Pin
Sritanu _ Ghosh28-Jul-08 21:37
Sritanu _ Ghosh28-Jul-08 21:37 
AnswerRe: Problem to connect PDA with database. Pin
Pavel Klocek5-Aug-08 1:14
Pavel Klocek5-Aug-08 1:14 
AnswerRe: Problem to connect PDA with database. Pin
AlexeiXX36-Aug-08 14:39
AlexeiXX36-Aug-08 14:39 
GeneralRe: Problem to connect PDA with database. Pin
Sritanu _ Ghosh27-Aug-08 3:35
Sritanu _ Ghosh27-Aug-08 3:35 
QuestionPlay sound on Smartphone/PDA Pin
Parasmani Swamy28-Jul-08 20:25
Parasmani Swamy28-Jul-08 20:25 
AnswerRe: Play sound on Smartphone/PDA Pin
daxfrost30-Jul-08 20:41
daxfrost30-Jul-08 20:41 
QuestionC++ Getting Current Time for smartphone Pin
Lou7624-Jul-08 2:57
Lou7624-Jul-08 2:57 
AnswerRe: C++ Getting Current Time for smartphone Pin
tapan.x.bansal25-Jul-08 6:09
tapan.x.bansal25-Jul-08 6:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.