home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pc3270sa.zip / ddxfer / ddxfer.rc < prev   
Text File  |  2002-02-28  |  975b  |  44 lines

  1. #include <windows.h>
  2. #include "ddxfer.h"
  3.  
  4. DDXFER      ICON    ddxfer.ico
  5. SENDICON    ICON    ddsend.ico
  6. RECVICON    ICON    ddrecv.ico
  7.  
  8. DDXferMenu  MENU
  9. BEGIN
  10.    POPUP       "&Option"
  11.    BEGIN
  12.       MENUITEM    "&Clear List",          IDM_CLEAR
  13.       MENUITEM    SEPARATOR
  14.       MENUITEM    "Change &Title...",     IDM_TITLE
  15.       MENUITEM    "&Parameters...",       IDM_TEXT
  16.       MENUITEM    SEPARATOR
  17.       MENUITEM    "&Always on Top",       IDM_TOP
  18.    END
  19.  
  20.    POPUP       "&Special"
  21.    BEGIN
  22.       MENUITEM    "&Terminate",           IDM_TERM
  23.    END
  24.  
  25.    POPUP       "&Help"
  26.    BEGIN
  27.       MENUITEM    "&About DDXfer...",     IDM_ABOUT
  28.    END
  29. END
  30.  
  31. STRINGTABLE
  32. BEGIN
  33.    LS_ASCII,   "ASCII"
  34.    LS_CRLF,    "CRLF"
  35.    LS_MENU,    "DDXferMenu"
  36.    LS_LIST,    "%s --> %s (Session %c)"
  37.    LS_CLASS,   "DDXferWClass"
  38.    LS_TITLE,   "Drag-and-Drop File Transfer"
  39.    LS_LISTBOX, "ListBox"
  40.    LS_TYPE,    " bin"
  41. END
  42.  
  43. rcinclude ddxfer.dlg
  44.