[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?
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!
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
Re: [RESOLVED] Opening up the keyboard
Put an input panel control on the form
Pete
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
Re: [RESOLVED] Opening up the keyboard
Hi,
you were given the solution above - use the gotfocus event to enable your keyboard
Pete
Re: [RESOLVED] Opening up the keyboard
thanks a lot.
it's done :)