Hiding or showing the keyboard on a PDA

jamose

Member
Joined
Feb 3, 2006
Messages
8
Programming Experience
1-3
Hi, i've been writing some code almost concluding now. So i need to do some final touch ups on it. One of them is that i have a combination of controls. I have combos and text boxes for examle. So when i set focus on a textbox, i need to pop up the keyboard and when i set focus on the combo, i need to hide the keyboard. Anyone with an idea how i can do this:confused:
 
drag an input panel onto the form.
set the input panel.visible to true in the got focus event of the text box and
set .visible to false in the lost focus event
 
I'm using visual studio 2005. The input panel control has no .visible property. Setting .enables to true and false actually works. Thanks alot
 
Back
Top