home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 5 Developer's Kit / vb5 dev kit.iso / dev / ftp4w26a / samples / c / cw.rc < prev    next >
Encoding:
Text File  |  1996-06-10  |  3.7 KB  |  119 lines

  1.  
  2. #define APSTUDIO_READONLY_SYMBOLS
  3. /////////////////////////////////////////////////////////////////////////
  4. //
  5. // Generated from the TEXTINCLUDE 2 resource.
  6. //
  7. #include "cw.h"
  8. #include "afxres.h"
  9.  
  10.  
  11. //////////////////////////////////////////////////////////////////////////////
  12. //
  13. // Menu
  14. //
  15.  
  16. CW_MAIN MENU DISCARDABLE 
  17. BEGIN
  18.     POPUP    "&Connect"
  19.     BEGIN  
  20.         MENUITEM "&Connect",                    CW_CONNECT
  21.         MENUITEM "&Disconnect",                 CW_DISCONNECT
  22.         MENUITEM SEPARATOR
  23.         MENUITEM "&Quit",                       CW_QUIT
  24.         MENUITEM "&About DLL"                   CW_ABOUT
  25.     END
  26.  
  27.     POPUP    "&File Transfer"
  28.     BEGIN   
  29.         MENUITEM "&Recv",                       CW_RECV
  30.         MENUITEM "&Send",                       CW_SEND
  31.         MENUITEM SEPARATOR
  32.         MENUITEM "&Append To Remote"            CW_APPEND
  33.         MENUITEM "Append To &Local"             CW_RCVAPPEND
  34.         MENUITEM SEPARATOR
  35.         MENUITEM "Recv From 100th byte"         CW_RCVRESTART
  36. #ifdef TEST_FOR_DATACONNECTION
  37.         MENUITEM SEPARATOR
  38.         MENUITEM "Recv /tmp/Z"                  CW_RECVTEXT
  39. #endif /* TEST_FOR_DATACONNECTION */
  40.         MENUITEM SEPARATOR
  41.         MENUITEM "Recv current dir"             CW_RECVDIR
  42.     END
  43.  
  44.     POPUP    "&Dir"
  45.     BEGIN
  46.         MENUITEM "&Long Dir (use file)",        CW_LONGDIR
  47.         MENUITEM "&Short Dir (use file)",       CW_SHORTDIR
  48.         MENUITEM SEPARATOR
  49.         MENUITEM "L&ong Dir (line per line)",   CW_LONGDIR_LL
  50.         MENUITEM "S&hort Dir (line per line)",  CW_SHORTDIR_LL
  51.     END
  52.  
  53.     POPUP "&Misc"
  54.     BEGIN
  55.         MENUITEM "&Change Dir",                 CW_CWD
  56.         MENUITEM "P&arent Dir",                 CW_CDUP
  57.         MENUITEM "&Make Dir",                   CW_MKD
  58.         MENUITEM "&Remove Dir",                 CW_RMD
  59.         MENUITEM "&Print Dir",                  CW_PWD
  60.         MENUITEM SEPARATOR
  61.         MENUITEM "&Delete Remote file",         CW_DELETE
  62.         MENUITEM "R&ename Remote file",         CW_RENAME
  63.         MENUITEM SEPARATOR
  64.         MENUITEM "&Flush",                      CW_FLUSH
  65.         MENUITEM "S&yst",                       CW_SYST
  66.         MENUITEM "&Quote",                      CW_QUOTE
  67.     END
  68.     POPUP "&Options"
  69.     BEGIN
  70.         MENUITEM "&Verbose Mode",               CW_SETVERB
  71.         MENUITEM "&Synchronous",                CW_SYNC
  72.         MENUITEM "Type &Bin",                   CW_BINARY
  73.         MENUITEM "&Passive Mode",               CW_PASSIVE
  74.         MENUITEM "&Gauge",                      CW_GAUGE
  75.         MENUITEM SEPARATOR
  76.         MENUITEM "&Edit INI",                   CW_EDITINI
  77.         MENUITEM SEPARATOR
  78.         MENUITEM "&Log To C:\\Ftp4w.Log",        CW_LOG
  79.     END
  80.     MENUITEM "&Abort",                          CW_ABORT
  81. END
  82.  
  83.  
  84. //////////////////////////////////////////////////////////////////////////////
  85. //
  86. // Icon
  87. //
  88.  
  89. CW                 ICON    DISCARDABLE     "CW.ICO"
  90.  
  91.  
  92. //////////////////////////////////////////////////////////////////////////////
  93. //
  94. // Dialog
  95. //
  96.  
  97. QuoteDlg DIALOG DISCARDABLE  20, 20, 161, 92
  98. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  99. CAPTION "Ftp4w: Quote"
  100. FONT 8, "MS Sans Serif"
  101. BEGIN
  102.     LTEXT           "Enter your command",IDC_STATIC,10,15,135,15
  103.     EDITTEXT        IDC_QUOTECMD,10,35,140,15,ES_AUTOHSCROLL
  104.     DEFPUSHBUTTON   "OK",IDOK,10,65,50,14
  105.     PUSHBUTTON      "Cancel",IDCANCEL,100,65,50,14
  106. END
  107.  
  108.  
  109. #ifndef APSTUDIO_INVOKED
  110. ////////////////////////////////////////////////////////////////////////////////
  111. //
  112. // Generated from the TEXTINCLUDE 3 resource.
  113. //
  114.  
  115.  
  116. /////////////////////////////////////////////////////////////////////////////////////
  117. #endif    // not APSTUDIO_INVOKED
  118.  
  119.