home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c083 / 20.ddi / DOCVIEW.PAK / INFOVIEW.RC < prev    next >
Encoding:
Text File  |  1993-12-02  |  743 b   |  29 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows - (C) Copyright 1993 by Borland International
  3. //   Menu and accelerators for use with TInfoView
  4. //----------------------------------------------------------------------------
  5.  
  6. #define CM_INFOOPEN         24521
  7. #define IDM_INFOVIEW        31521
  8.  
  9. #if defined(RC_INVOKED)
  10.  
  11. IDM_INFOVIEW MENU LOADONCALL MOVEABLE PURE DISCARDABLE
  12. BEGIN
  13.   POPUP "&Edit"
  14.   BEGIN
  15.     MenuItem  "&Open",                CM_INFOOPEN
  16.   END
  17.   POPUP "&Help"
  18.   BEGIN
  19.     MenuItem  "OWL InfoView", 0, INACTIVE
  20.   END
  21. END
  22.  
  23. STRINGTABLE LOADONCALL MOVEABLE DISCARDABLE
  24. BEGIN
  25.   CM_INFOOPEN,  "Opens the file to get info"
  26. END
  27.  
  28. #endif  // defined(RC_INVOKED)
  29.