views:

80

answers:

1

Hi

I have added a textbox to my WinMo app's form and I want to get an email address as the input. Right now if I type @, it just takes in the input as 'a' instead of the @ sign.

How do I allow the @ character in the textbox? I am using Windows Mobile Professional SDK and testing on the Smartphone Emulator.

Thanks

A: 

This is the Smartphone's 'abc' mode interfering with your text entry. It's seeing the shift-2 as simply the '2' key, and is queuing up an a, b, or c letter (if you press it multiple times).

Since many input methods are device-dependent (some devices have a FN key you have to chord with another, others have a SYM key that pops up a symbol chooser), you are bound to whatever the device (or in this case, the emulator) uses.

To use that emulator's input method, keep pressing the 1 key - it loops through common symbols including the '@' character.

Jason