ABOUT1.RC: Translation to Stony Brook Modula-2

Last updated: 17.10.1997, 20:35

/*---------------------------
   ABOUT1.RC resource script
  ---------------------------*/

#include 
#include "about1.h"

About1 ICON ABOUT1.ICO

About1 MENU
     BEGIN
     POPUP "&Help"
          BEGIN
          MENUITEM "&About About1...",       IDM_ABOUT
          END
     END

AboutBox DIALOG  20, 20, 160, 100
     STYLE WS_POPUP | WS_DLGFRAME
     BEGIN
     CTEXT "About1"                      -1,   0, 12, 160,  8
     ICON  "About1"                      -1,   8,  8,   0,  0
     CTEXT "About Box Demo Program"      -1,   0, 36, 160,  8
     CTEXT "(c) Charles Petzold, 1996"   -1,   0, 48, 160,  8
     CTEXT "translated to SBM2       "   -1,   0, 60, 160,  8
     CTEXT "(c) Peter Stadler,   1997"   -1,   0, 72, 160,  8
     DEFPUSHBUTTON "OK"                IDOK,  64, 84,  32, 14, WS_GROUP
     END