Making MS Access to be always on top and active

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi
Ho to make Ms Access to be always on top of the desktop and always active application (to receive any keyboard event)? User can activate/disable that feature by clicking on a button on toolbar

Thank
Tran Hong Quang
 
I don't think you can accomplish that with ms-access.

What are you trying to do?
 
Tran,

This is not possible natively in Access but what you could do is use the
Windows API to create a Keyboard Hook. You can either purchase a Hook
Control or ceate one, take a look at the documentation on this API:

Declare Function SetKeyboardHook& Lib "dskbhook" (ByVal hwnd&, ByVal
Callback&, ByVal Adr&)

Regrads,
Dan

Tran Hong Quang said:
Hi,
Ho to make Ms Access to be always on top of the desktop and always active
application (to receive any keyboard event)? User can activate/disable that
feature by clicking on a button on toolbar.
 
Back
Top