Results 1 to 7 of 7

Thread: [RESOLVED] Opening up the keyboard

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Feb 2006
    Posts
    17

    Resolved [RESOLVED] Opening up the keyboard

    Hello all,
    Here is another in the series of dumb questions. Windows Mobile 2003, Is there a way of opening up the keyboard when I click in a text box? Ex. I have an appication that the user puts in there password in a textbox and I want the keyboard to open as soon as they click on the text box or even when the app loads.

    Any ideas?

  2. #2
    ex-Administrator brad jones's Avatar
    Join Date
    Nov 2002
    Location
    Indianapolis
    Posts
    6,614

    Re: Opening up the keyboard

    In the GetFocus event of hte textbox, put:

    Code:
    this.inputpanel1.Enabled = true;
    In the LostFocus event of the textbox, you can put:

    Code:
    this.inputpanel1.Disabled = true;
    This should display the input panel when the user is on the given field.

    Brad!
    Have you given out your reputation points today? Select the Rate This Post link to give points for good posts!
    -------------------------------------------------------------
    Brad! Jones
    Lots of Software, LLC
    (I wrote: C Programming in One Hour a Day) (Dad Jokes Book) (Follow me on Twitter)

    --------------------------------------------------------------

  3. #3
    Fanatic Member
    Join Date
    Oct 2001
    Location
    Earth
    Posts
    762

    Re: [RESOLVED] Opening up the keyboard

    i try this but it give error..
    inputpanel1 is not defined...

    i m using vb.net 2005 for pocket pc

  4. #4
    Frenzied Member
    Join Date
    Oct 2005
    Posts
    1,286

    Re: [RESOLVED] Opening up the keyboard

    Put an input panel control on the form

    Pete

  5. #5
    Fanatic Member
    Join Date
    Oct 2001
    Location
    Earth
    Posts
    762

    Re: [RESOLVED] Opening up the keyboard

    when i run the application on pocket pc emolator a key board avaialbe at the bottom.
    i need to open it when i focus the textbox automaticly.
    plz give me any hint or solution.
    thanks

  6. #6
    Frenzied Member
    Join Date
    Oct 2005
    Posts
    1,286

    Re: [RESOLVED] Opening up the keyboard

    Hi,
    you were given the solution above - use the gotfocus event to enable your keyboard

    Pete

  7. #7
    Fanatic Member
    Join Date
    Oct 2001
    Location
    Earth
    Posts
    762

    Re: [RESOLVED] Opening up the keyboard

    thanks a lot.
    it's done

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width