home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / PVIEW95.PAK / PVIEW95.RC < prev    next >
Encoding:
Text File  |  1997-05-06  |  3.6 KB  |  120 lines

  1. #include "resource.h"
  2.  
  3. #if !defined (WORKSHOP_INVOKED)
  4. #include "windows.h"
  5. #endif
  6.  
  7. #include "globals.h"
  8. #include "winver.h"
  9.  
  10. IDI_APPICON             ICON    DISCARDABLE     "pview95.ico"
  11.  
  12. IDB_TOOLBAR             BITMAP  DISCARDABLE     "toolbar.bmp"
  13.  
  14. IDC_RESIZE              CURSOR  DISCARDABLE     "resize.cur"
  15.  
  16. ABOUTBOX DIALOG DISCARDABLE  22, 17, 167, 73
  17. STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
  18. CAPTION "About PView95"
  19. FONT 8, "System"
  20. BEGIN
  21.     DEFPUSHBUTTON   "OK",IDOK,132,2,32,14,WS_GROUP
  22.     ICON            IDI_APPICON,-1,3,2,18,20
  23.     LTEXT           "CompanyName",IDD_VERFIRST,30,2,100,8
  24.     LTEXT           "FileDescription",101,30,11,100,8
  25.     LTEXT           "FileVersion",102,30,20,137,8
  26.     LTEXT           "LegalCopyright",103,30,29,137,8
  27.     LTEXT           "LegalTrademarks",IDD_VERLAST,30,47,136,27
  28.     CONTROL         "",501,"Static",SS_BLACKRECT,29,43,138,1
  29. END
  30.  
  31.  
  32. PVIEW95 MENU DISCARDABLE 
  33. BEGIN
  34.     POPUP "&File"
  35.     BEGIN
  36.         MENUITEM "E&xit",                       ID_FILE_EXIT
  37.     END
  38.     POPUP "&Process"
  39.     BEGIN
  40.         MENUITEM "&Refresh\tF5",                ID_PROCESS_REFRESH
  41.         MENUITEM "&Kill",                       ID_PROCESS_KILL
  42.     END
  43.     POPUP "&Help"
  44.     BEGIN
  45.         MENUITEM "&About...\tF1",               ID_HELP_ABOUT
  46.     END
  47. END
  48.  
  49.  
  50. PVIEW95 ACCELERATORS MOVEABLE PURE 
  51. BEGIN
  52.     VK_F1,          ID_HELP_ABOUT,          VIRTKEY, NOINVERT
  53.     VK_F5,          ID_PROCESS_REFRESH,     VIRTKEY, NOINVERT
  54.     "Q",            ID_FILE_EXIT,           VIRTKEY, CONTROL
  55. END
  56.  
  57.  
  58. VS_VERSION_INFO VERSIONINFO
  59.  FILEVERSION 4,0,0,0
  60.  PRODUCTVERSION 4,0,0,0
  61.  FILEFLAGSMASK 0x3fL
  62. #ifdef _DEBUG
  63.  FILEFLAGS 0xbL
  64. #else
  65.  FILEFLAGS 0xaL
  66. #endif
  67.  FILEOS 0x10001L
  68.  FILETYPE 0x1L
  69.  FILESUBTYPE 0x0L
  70. BEGIN
  71.     BLOCK "StringFileInfo"
  72.     BEGIN
  73.         BLOCK "040904E4"
  74.         BEGIN
  75.             VALUE "CompanyName", "Microsoft Corporation\0"
  76.             VALUE "FileDescription", "Process Viewer Application\0"
  77.             VALUE "FileVersion", "Version 4.0\0"
  78.             VALUE "InternalName", "PView95\0"
  79.             VALUE "LegalCopyright", "Copyright \251 Microsoft Corp. 1990-1995\0"
  80.             VALUE "LegalTrademarks", "Microsoft\256 is a registered trademark of Microsoft Corporation. Windows(TM) is a trademark of Microsoft Corporation\0"
  81.             VALUE "ProductName", "PView95\0"
  82.             VALUE "ProductVersion", "Version 4.0\0"
  83.         END
  84.     END
  85.     BLOCK "VarFileInfo"
  86.     BEGIN
  87.         VALUE "Translation", 0x409, 1252
  88.     END
  89. END
  90.  
  91.  
  92.  
  93. STRINGTABLE DISCARDABLE 
  94. BEGIN
  95.     IDS_APPNAME             "PView95"
  96.     IDS_DESCRIPTION         "Process Viewer Application"
  97.     IDS_PROCESS             "Process"
  98.     IDS_PID                 "PID"
  99.     IDS_PRIORITY            "Base Priority"
  100.     IDS_THREADCNT           "Num. Threads"
  101.     IDS_FULLPATH            "Full Path"
  102.     IDS_THREAD              "TID"
  103.     IDS_TPID                "Owning PID"
  104.     IDS_TPRIORITY           "Thread Priority"
  105.     IDS_FILTERSTRING        "Programs (*.exe, *.com, *.bat, *.pif)|*.exe;*.com;*.bat|Executables (*.exe)|*.exe|Command Files (*.com)|*.com|Batch Files (*.bat)|*.bat|Pif Files (*.pif)|*.pif|"
  106.     IDS_NOMEMORY            "There is insufficent memory to run the program"
  107.     IDS_BADFORMAT           "The file is not a valid executable format"
  108.     IDS_FILENOTFOUND        "Cannot find the specified file"
  109.     IDS_PATHNOTFOUND        "Cannot find the specified path"
  110. END
  111.  
  112. STRINGTABLE DISCARDABLE 
  113. BEGIN
  114.     IDS_TIP_REFRESH         "Refresh process list"
  115.     IDS_TIP_KILL            "Kill process"
  116.     IDS_PROCESSTYPE         "Type"
  117. END
  118.  
  119.  
  120.