Problem with keyboard

Hi

I write an aplication for Windows Mobile in C#. If I have cursor in textBox, the keyboard on touchscreen isn't showed. Panel with icon of keyboard isn't showed to. How I show keyboard for enter data to textBox

Any suggestions are appreciated. Thanks.

Tomas



Answer this question

Problem with keyboard

  • bcarter00

    Thank you, it helps.

    Tomas


  • Klaxas

    I'm not 100% sure I understand what you're asking, but I'll try to offer what help I can. It seems like you want the SIP (Software Input Panel... i.e. the little keyboard on the screen) to appear when focus is on the textBox. You'll need to add an InputPanel control to your form. You can then either manually bring up the InputPanel when you need it by clicking on the little keyboard icon, or you can add event handlers to set the InputPanel's Enabled property to true/false when the textBox gets/loses focus.

    Hope that helps,
    --Jeff


  • Problem with keyboard