home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pc3270sa.zip / listfile / listfile.rc < prev   
Text File  |  2002-02-28  |  1KB  |  35 lines

  1. #include "windows.h"
  2. #include "listfile.h"
  3.  
  4. LISTICON ICON listfile.ico
  5.  
  6. LISTMENU MENU
  7. BEGIN
  8.   POPUP   "&Help"
  9.   BEGIN
  10.     MENUITEM "&About ListFile ...",    ID_ABOUT
  11.   END
  12. END
  13.  
  14. ABOUTBOX DIALOG 22, 17, 160, 68
  15. STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
  16. CAPTION "About ListFile"
  17. BEGIN
  18.   ICON            LISTICON,-1,5,5,20,24
  19.   LTEXT           "ListFile DDE Sample Application",-1,34,5,150,10,NOT WS_GROUP
  20.   LTEXT           " Version: 2.00",ID_IGNORE,34,15,150,10,NOT WS_GROUP
  21.   LTEXT           "⌐ Copyright IBM Corp. 1991,1996", -1, 34, 25, 150,10,NOT WS_GROUP
  22.   LTEXT           "           All rights reserved.",-1, 34,35,150,10,NOT WS_GROUP
  23.   DEFPUSHBUTTON   "&OK",IDOK,50,50,60,15,NOT WS_TABSTOP
  24. END
  25.  
  26. STRINGTABLE
  27. BEGIN
  28.   LS_COMMAND_LINE_ERROR1, "ListFile command line must specify a session ID, 'LISTFILE /A'"
  29.   LS_TITLE_TEXT,          "ListFile Sample Application Session: "
  30.   LS_DDE_TOKENS,          "3270LIST LISTFILE FILEMASK GETLIST IBM327032 SESSION KEYS PS"
  31.   LS_16STR_FORMAT,        "%s %s %s %s %s %s %s %s %s %s %s %s %s %s %s %s"
  32.   LS_LISTFILE_COMMAND,    "[sendkey(clear,wait inp inh,%cLISTFILE %s %c,enter,wait inp inh,pause,pause)]"
  33.   LS_CLEARSCREEN_COMMAND, "[sendkey(clear,wait inp inh,pause,pause)]"
  34. END
  35.