home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / wpj_mag / wpjv1n6.zip / EDITPRO.ZIP / EDITPRO.RC < prev    next >
Text File  |  1993-04-30  |  939b  |  34 lines

  1. #include "EDITPRO.h"
  2. EDITPRO ICON  A:\EDITPRO.ICO
  3.  
  4.  
  5. EDITPRO MENU
  6.   BEGIN
  7.     POPUP  "&File"
  8.       BEGIN
  9.         MENUITEM "&Open\tCTRL+F12", IDM_F_OPENT
  10.         MENUITEM "&Close", IDM_F_CLOSE
  11.         MENUITEM SEPARATOR
  12.         MENUITEM "E&xit\tALT+F4", IDM_F_EXITT
  13.         MENUITEM SEPARATOR
  14.         MENUITEM "&About...", IDM_F_ABOUT
  15.       END
  16.   END
  17.  
  18. #include "A:\ABOUT.DLG"
  19.  
  20.  
  21. EDITPRO ACCELERATORS
  22.   BEGIN
  23.     VK_F12, IDM_F_OPENT, VIRTKEY, CONTROL
  24.     VK_F4, IDM_F_EXITT, ALT, VIRTKEY
  25.   END
  26.  
  27. STRINGTABLE
  28. BEGIN
  29.   IDS_ERR_CREATE_WINDOW,    "Window creation failed!"
  30.   IDS_ERR_REGISTER_CLASS,   "Error registering window class"
  31.   IDS_ERR_FILE2BIG          "Not enough memory to open file.  Please exit one or more applications and try again."
  32.   IDS_ERR_2MANYLINES        "Cannot open the file because the number of lines exceeds Windows' scroll bar range limit of 32,767."
  33. END
  34.