G
Guest
I am looking for a way to simply disable word completion for an edit field,
other than switching it off for the complete Pocket PC.
We have a "combo box like" user control that needs to pick up the arrow keys
in the KeyDown event to move up and down a listbox. When the user types more
than 2 characters I get VK_PROCESSKEY, which I assume means that the arrow
keys are going to the word completion control.
I have subclassed the edit control to get the VK_RETURN, is my only option
to also use this and see if I get VK_KEYDOWN, etc, there.
Something along the lines of
TextBox.WordCompletion = false
would be nice.
Thanks for any help,
Peter
other than switching it off for the complete Pocket PC.
We have a "combo box like" user control that needs to pick up the arrow keys
in the KeyDown event to move up and down a listbox. When the user types more
than 2 characters I get VK_PROCESSKEY, which I assume means that the arrow
keys are going to the word completion control.
I have subclassed the edit control to get the VK_RETURN, is my only option
to also use this and see if I get VK_KEYDOWN, etc, there.
Something along the lines of
TextBox.WordCompletion = false
would be nice.
Thanks for any help,
Peter