home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / DRAGIN.ZIP / DRAGINFO.RC < prev    next >
Text File  |  1993-02-14  |  2KB  |  45 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 "draginfo.h"
  21.  
  22. ICON    ID_WINDOW  draginfo.ico
  23. ICON    ID_DRAGPTR drgdrag.ico
  24.  
  25. MENU    ID_WINDOW PRELOAD
  26. BEGIN
  27.   SUBMENU "~Options", ID_OPTIONS
  28.   BEGIN
  29.     MENUITEM "Use ~DrgDrag",        IDM_DRGDRAG, MIS_TEXT
  30.     MENUITEM "Use DrgDrag~Files",   IDM_DRGDRAGFILES, MIS_TEXT
  31.     MENUITEM SEPARATOR
  32.     MENUITEM "~Configure parameters", IDM_CONFIGDLG, MIS_TEXT
  33.     MENUITEM SEPARATOR
  34.     MENUITEM "Clear ~Listbox",      IDM_CLEARLIST, MIS_TEXT
  35.     MENUITEM "Do ~Something else",  IDM_DOSOMETHING, MIS_TEXT
  36.   END
  37. END
  38.  
  39. ACCELTABLE ID_WINDOW PRELOAD
  40. BEGIN
  41.   VK_F3, ID_EXITPROG, VIRTUALKEY
  42. END
  43.  
  44. rcinclude draginfo.dlg
  45.