|
-
May 13th, 2006, 10:53 AM
#1
Thread Starter
Junior Member
[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?
-
May 14th, 2006, 08:31 AM
#2
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!
-
May 25th, 2006, 08:37 AM
#3
Fanatic Member
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
-
May 26th, 2006, 01:42 AM
#4
Frenzied Member
Re: [RESOLVED] Opening up the keyboard
Put an input panel control on the form
Pete
-
May 26th, 2006, 01:51 AM
#5
Fanatic Member
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
-
May 26th, 2006, 04:42 AM
#6
Frenzied Member
Re: [RESOLVED] Opening up the keyboard
Hi,
you were given the solution above - use the gotfocus event to enable your keyboard
Pete
-
May 26th, 2006, 05:51 AM
#7
Fanatic Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|