home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast.iso / pcmag / vol11n15.zip / MIDREC.RC < prev    next >
Text File  |  1992-03-15  |  913b  |  30 lines

  1. /*---------------------------
  2.    MIDREC.RC resource script
  3.   ---------------------------*/
  4.  
  5. #include <windows.h>
  6. #include "midrec.h"
  7.  
  8. MidRec MENU
  9.      {
  10.      POPUP "&Devices"
  11.           {
  12.           MENUITEM "&Input",       ID_DEV_INP
  13.           MENUITEM "&Monitor",     ID_DEV_MON
  14.           MENUITEM "&Output",      ID_DEV_OUT
  15.           }
  16.      }
  17.  
  18. MidRec DIALOG 32768, 0, 152, 52
  19.      STYLE WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX | WS_VISIBLE
  20.      CAPTION "MIDI Player / Recorder"
  21.      MENU     MidRec
  22.      {
  23.      DEFPUSHBUTTON "Record"  ID_RECORD_BEG,  28,  8, 40, 14
  24.      PUSHBUTTON    "End"     ID_RECORD_END,  76,  8, 40, 14, WS_DISABLED
  25.  
  26.      PUSHBUTTON    "Play"    ID_PLAY_BEG,     8, 30, 40, 14, WS_DISABLED
  27.      PUSHBUTTON    "Pause"   ID_PLAY_PAUSE,  56, 30, 40, 14, WS_DISABLED
  28.      PUSHBUTTON    "End"     ID_PLAY_END,   104, 30, 40, 14, WS_DISABLED
  29.      }
  30.