Microsoft KB Archive/169588

From BetaArchive Wiki
< Microsoft KB Archive
Revision as of 19:28, 20 July 2020 by X010 (talk | contribs) (Text replacement - ">" to ">")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

HOWTO: Programmatically Undock Using the Keyboard Buffer

Q169588



The information in this article applies to:


  • Microsoft Win32 Device Driver Kit (DDK) Windows 95
  • Microsoft Win32 Software Development Kit (SDK)





SUMMARY

Windows 95 does not support a direct API to programmatically undock a laptop computer. However, you can undock the laptop by sending the appropriate keystroke sequence for the machine to the keyboard buffer.



MORE INFORMATION

From a VxD, you can use VKD_Force_Keys to force scan codes into the keyboard buffer just as if they had been typed on the physical keyboard. These keys are processed in the context of the focus virtual machine.

From an application, you can use the keybd_event function to synthesize the appropriate keystrokes to undock a laptop. The code below sends a CTRL ESC sequence:


      #include <windows.h>

      main()
      {
          keybd_event( VK_CONTROL,0x9d, KEYEVENTF_EXTENDEDKEY | 0, 0);
          keybd_event( VK_ESCAPE,0x81, KEYEVENTF_EXTENDEDKEY | 0, 0 );
          keybd_event( VK_ESCAPE,0x81, KEYEVENTF_EXTENDEDKEY |
   KEYEVENTF_KEYUP,0 );
          keybd_event( VK_CONTROL,0x9d, KEYEVENTF_EXTENDEDKEY |
   KEYEVENTF_KEYUP, 0 );
      } 



REFERENCES

See the Windows 95 DDK for more information on VKD_Force_Keys. See the Win32 SDK for more information on keybd_event.

Keywords :
Issue type :
Technology : kbWin32SDKSearch kbAudDeveloper kbWin95search kbSDKSearch kbWinDDKSearch kbWin32sSearch kbWin32DDK95 kbWin32DDKSearch


Last Reviewed: March 5, 1999
© 2001 Microsoft Corporation. All rights reserved. Terms of Use.