SoftKeyboard Issue

  • Thread starter Thread starter Atley
  • Start date Start date
A

Atley

I am having problems making sure the softkeyboard (input panel) is available
in my VB.NET 2003 application. is there any property, method I can invoke
to insure that it is available to edit the fields in my application?


Any help is greatly appreciated,
Atley
 
Your form should contain a MainMenu even if it has no menu items visible -
this will ensure the button is available for users to toggle to input panel.
You can also add an InputPanel to your form which you can then enable and
disable through code.

Peter
 
Where do I add an input panel from....
I find that when I populate the textboxes on a form through code from a
DataSet, the InputPanel disappears, when I take this code out, the panel
comes back... wierd...


Any help is appreciated.

Atley
 
Try putting a menu on your form. I seem to remember having trouble
getting mine to show/hide until the form had a menu on it. It seemed
like the menu had to be there first sort of a place holder for the sip
itself.
 
Back
Top