home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / win_lrn / accell / transacc.rc < prev   
Encoding:
Text File  |  1988-08-11  |  409 b   |  20 lines

  1. #include "style.h"    /* Smaller version of windows.h */
  2. #include "transacc.h"
  3.  
  4.  
  5. TRANSACCELMENU1  MENU
  6. BEGIN
  7.   MENUITEM "Press (F10) For Next Menu",       ID_NEXT
  8. END
  9.  
  10. TRANSACCELMENU2  MENU
  11. BEGIN
  12.   MENUITEM "Press (F9) For Previous Menu",    ID_PREV
  13. END
  14.  
  15. TRANSACCELMENU    ACCELERATORS       /* Defines the accelerators */
  16. BEGIN
  17.   VK_F10, ID_NEXT, VIRTKEY         
  18.   VK_F9,  ID_PREV, VIRTKEY
  19. END
  20.