home *** CD-ROM | disk | FTP | other *** search
/ MORE WinGames / WINGAMES.iso / cbrk / cbreak.rc < prev    next >
Text File  |  1991-05-14  |  2KB  |  47 lines

  1. /*
  2.     Resource file for Code Break Game.
  3. */
  4.  
  5. #include <windows.h>
  6. #include "cbreak.h"
  7.  
  8. CBrkIcon    ICON    CBreak.ico
  9. CBrkMenu    MENU    {
  10.     POPUP "&Game"   {
  11.         MENUITEM    "&New Game",        IDM_NEW
  12.         MENUITEM    SEPARATOR
  13.         MENUITEM    "E&xit",            IDM_EXIT
  14.     }
  15.     POPUP "&Help"   {
  16.         MENUITEM    "&Help",            IDM_HELP
  17.         MENUITEM    "&About",           IDM_ABOUT
  18.     }
  19. }
  20.  
  21.  
  22. HelpBox     DIALOG  10, 20, 250, 170
  23.     STYLE WS_POPUP | WS_DLGFRAME
  24.     {
  25.         CTEXT   "Code Breaker 1.01.a"           -1, 85, 5, 80, 10
  26.         LTEXT   "The goal of this game is to guess the same sequence of numbers as that of the computer. The number sequence that the computer genereates is made up of  5 digits in the range 1 to 8. As you make a guess the computer will give you clues." -1, 20, 20, 210, 35
  27.         LTEXT   "A clue of '1' means that the number you chose is correct and in the correct position. A clue of '0' means the the number is correct but in the wrong position. The postion of the clues is not representative of the position of the buttons." -1, 20, 53, 210, 35
  28.         LTEXT   "You change your guess by clicking on the buttons. The number of the button will increase by one each time until '8' is reached where upon clicking again will cause the number to start over again at '1'." -1, 20, 87, 210, 25
  29.         LTEXT   "To test your guess click on the 'Did I get it right ?' button and it will test your guess and display any new clues." -1, 20, 113, 210, 20
  30.         CTEXT   "Good Luck and Happy guessing." -1, 65, 135, 120, 10
  31.         DEFPUSHBUTTON "OK"                    IDOK, 105, 150, 40, 15, WS_GROUP
  32.     }
  33.  
  34.  
  35. AboutBox    DIALOG  10, 30, 140, 100
  36.     STYLE WS_POPUP | WS_DLGFRAME
  37.     {
  38.         ICON    "CBrkIcon",                     -1,  5,  5,  13, 13
  39.         CTEXT   "OMNIBUS Systems"               -1, 30, 30,  80,  8
  40.         CTEXT   "Code Breaker Game"             -1, 30,  5,  80,  8
  41.         CTEXT   "Version 1.01.a"                -1, 30, 13,  80,  8
  42.         CTEXT   "Author : Kenneth Fogel"        -1, 30, 40,  80,  8
  43.         CTEXT   "Co-Author : Charles W. Haden"  -1, 20, 50, 100,  8
  44.         DEFPUSHBUTTON "OK"                    IDOK, 50, 75,  40, 15, WS_GROUP
  45.     }
  46.  
  47.