Thanks, I was hoping there would be a registry place to change it or
something. The webcam app always starts when the system starts. Maybe ifI
could disable this auto-start (any ideas) - PS There is nothing in the web
cam preferences that would help.
Thanks
M
"Andrew McLaren" <> wrote in message
news:A1627D2B-1FB9-4C29-91E2-...
> Those keyboard shortcuts aren't defined by Windows, they are defined by
> the various applications you have installed - Office, and the Chicony app.
>
> (Well, Windows does define some keybard shortcuts of its own; but they're
> only a small subset of the total keyboard operations active at any time -
> for example, WinKey+F for search).
>
> There are 2 ways an application can register a global hotkey hook with
> Windows:
>
> 1) the "polite" way, RegisterHotKey(). This call wil fail, if another
> application has already registered the same hotkey.
>
> 2) the brutal way, to call SetWindowsHookEx() to install a KeyboardProc()
> hook procedure. This is a low-level operation, with few checks and
> balances. It is also by far the most common method used. The last app to
> call the function is the winner, and over-writes any pre-existing hooks.
> Sometimes this might reflect the order in which the applications are
> launched (so, start Office last) - but this is not enforced by the system,
> so there's no guarantee.
>
> If the Web Cam app is so inconsiderate as to co-opt a hard-coded global
> hook for Alt-F11, there's not much you can do to stop it - except possibly
> uninstall the application. If you're lucky, the webcam app will have an
> option to select a different key combination. Or - I dunno much about
> Office but I'm certain you can re-map the ViewVBCode command (which
> launches the macro editor) somewhere under Customise, Keyboard. So you
> could set Office to use a different key combo.
>
> Bottom line: this is defined by the applications, not by Windows itself.
>
> Hope it helps a bit,
> Andrew
>
|