V
vbmark
How do I get a TEXTBOX's and COMBOBOX's HWnd on a SMARTPHONE in Visual
Basic.NET?
GetCapture() works on PPC but not SMARTPHONE.
Basic.NET?
GetCapture() works on PPC but not SMARTPHONE.
ApplicationEx.AddMessageFilter(m_oTextBox(i))
One thign I have to say about your design - it's not a very good idea
to have each control have its own message filter. This will slow your
application to a crawl since ApplicationEx needs to invoke every
single delegate on every windows message. Since you only want keyboard
messages, keep track of which control is focused (by having Focus
event handler in your control class and setting a global variable to
reference this control). This way you could have a single message
filter where you could invoke Control's own message filter for the
active control only