As the title suggests, I implemented a UserControl that contains button and Masked Textbox controls that is added to ArcMap as a ToolBar. All works fine except for an issue that would not be a problem IF the Masked Textbox was on a regular WindowsForm.
The problem is that I cannot seem to capture the key stroke of the [Enter] key of the KeyDown event of the Masked Textbox. I have no problem getting anyother key, but the KeyDown event doesn't even pickup the [Enter] key. As I mentioned, if this control was on a regular windows form it wouldn't be a problem, but this is a control placed on a UserControl with no windows forms in sight.
After the user types into the Masked Textbox and hits the [Enter] key, I'd like to 'do something.
Any suggestions?