home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / HOTKEY.PAK / HOTKEY.RC < prev    next >
Encoding:
Text File  |  1997-05-06  |  996 b   |  32 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows
  3. // Copyright (c) 1995, 1995 by Borland International, All Rights Reserved
  4. //----------------------------------------------------------------------------
  5. #include <owl/window.rh>
  6. #include <owl/inputdia.rc>
  7. #include <owl/except.rc>
  8. #include "hotkey.h"
  9.  
  10. ID_APPMENU MENU
  11. {
  12.  POPUP "&Configure"
  13.  {
  14.   MENUITEM "&Hot Key...", IDM_HOTKEY
  15.  }
  16. }
  17.  
  18. IDD_HOTKEYDLG DIALOG 16, 66, 207, 71
  19. STYLE DS_3DLOOK | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  20. CAPTION "Hot Key"
  21. FONT 8, "MS Sans Serif"
  22. {
  23. #if defined(__FLAT__)
  24.  CONTROL "", IDC_HOTKEY, "msctls_hotkey32", 0 | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 12, 17, 109, 38
  25. #else
  26.  CONTROL "", IDC_HOTKEY, "msctls_hotkey",   0 | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 12, 17, 109, 38
  27. #endif
  28.  DEFPUSHBUTTON "OK", IDOK, 146, 17, 50, 14
  29.  PUSHBUTTON "Cancel", IDCANCEL, 146, 35, 50, 14
  30.  LTEXT "Enter Hot Key:", -1, 12, 5, 109, 9
  31. }
  32.