home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 4 Unleashed / Visual_Basic_4_Unleashed_SAMS_Publishing_1995.iso / tedevkit / demo.rc < prev    next >
Encoding:
Text File  |  1995-04-27  |  746 b   |  27 lines

  1. #include "windows.h"
  2.  
  3. /******************************************************************************
  4.     Section A.
  5.     This section is specific to the demo program and not to
  6.     be included into your applications resource file.
  7. *******************************************************************************/
  8.  
  9. #include "demo.h"
  10. #include "demo_dlg.dlg"
  11.  
  12. DemoMenu MENU
  13. BEGIN
  14.     MENUITEM "&Open",    IDM_OPEN
  15.     MENUITEM "&Close",   IDM_CLOSE
  16.     POPUP "&Other"
  17.     BEGIN
  18.        MENUITEM "&Print",   IDM_PRINT
  19.        MENUITEM "&Fields",  IDM_FIELDS
  20.        MENUITEM "&Reset",   IDM_RESET
  21.        MENUITEM "&Insert",  IDM_INSERT
  22.        MENUITEM "&Search",  IDM_SEARCH
  23.        MENUITEM "Pre&view", IDM_PREVIEW
  24.     END
  25. END
  26.  
  27.