home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / DRGDRO.ZIP / DROPINFO.ZIP / DROPINFO.RC < prev    next >
Text File  |  1993-02-22  |  2KB  |  39 lines

  1. /*********** DROPINFO  C Sample Program Resource Script File (.RC) ***************/
  2. /*                                                                            */
  3. /*  The window resources used by an application are defined in a resource     */
  4. /*  script file .RC.  This file is compiled by the resource compiler to       */
  5. /*  produce an executable-format file.                                        */
  6. /*  The definitions are either statements which define resources or           */
  7. /*  references to other files containing resources.                           */
  8. /*                                                                            */
  9. /*  In this resource script file:                                             */
  10. /*  ------------------------------------------------------------------------  */
  11. /*  Statement:                        References:                             */
  12. /*  MENU  ID_WINDOW PRELOAD           #include <os2.h>                        */
  13. /*  ACCELTABLE ID_WINDOW PRELOAD      #include "dropinfo.h"                      */
  14. /*  STRINGTABLE PRELOAD               ICON ID_WINDOW dropinfo.ico                */
  15. /*                                                                            */
  16. /******************************************************************************/
  17.  
  18.  
  19. #include <os2.h>
  20. #include "dropinfo.h"
  21.  
  22. ICON    ID_WINDOW dropinfo.ico
  23.  
  24. MENU    ID_WINDOW PRELOAD
  25. BEGIN
  26.   SUBMENU "~Options", ID_OPTIONS
  27.   BEGIN
  28.     MENUITEM "Set ~Response",   IDM_RESPONSE, MIS_TEXT
  29.     MENUITEM "Clear ~Listbox",  IDM_CLEARLIST, MIS_TEXT
  30.     MENUITEM SEPARATOR
  31.     MENUITEM "That's ~It",      IDM_EXIT, MIS_TEXT
  32.   END
  33. END
  34.  
  35. ACCELTABLE ID_WINDOW PRELOAD
  36. BEGIN
  37.   VK_F3, ID_EXITPROG, VIRTUALKEY
  38. END
  39.