how to make a shortcut

  • Thread starter Thread starter Tihomir Ignatov
  • Start date Start date
T

Tihomir Ignatov

hello,
how I can make a shortcut for button in .net smart device
application (or key accelerator)?

Ignatov
 
Those items seem not to be supported in .NET CF's current version. You can
use a C/C++ DLL and capture all keyboard input to the device, sending
messages to a subclass of MessageWindow in your .NET CF application to do
it, but it's not an easy process by any means. There have been a number of
messages in past concerning using SetWindowsHookEx() from C/C++ and
MessageWindow() to do this type of thing. Maybe there's something useful in
the newsgroup archives...

http://groups.google.com/groups?hl=...soft.public.dotnet.framework.compactframework

Paul T.
 
Back
Top