home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / pcmagazi / 1992 / 17 / bugs / about.dlg next >
Text File  |  1992-07-06  |  3KB  |  67 lines

  1. //------------------------------------------------------------------------
  2. // 
  3. //  BUGS.DLG -- Dialog box templates for Bugs
  4. //
  5. //  Copyright (c) 1992 Douglas Boling
  6. //
  7. //------------------------------------------------------------------------
  8.  
  9. //------------------------------------------------------------------------
  10. //  About dialog box
  11. //------------------------------------------------------------------------
  12. About DIALOG LOADONCALL MOVEABLE DISCARDABLE 10, 27, 180,  210
  13.    STYLE WS_BORDER | WS_CAPTION | WS_DLGFRAME | WS_VISIBLE | WS_POPUP
  14. CAPTION "About Bugs"
  15. BEGIN
  16.    ICON    ID_APP,                       -1,  10,  10,   0,   0
  17.  
  18.    CTEXT   "Bugs",                       -1,  50,  10,  80,  10
  19.    CTEXT   "A Windows Screen Saver",     -1,  30,  20, 120,  10
  20.    CTEXT   "Copyright \251 1992 Douglas Boling"
  21.                                           -1,  20,  30, 140,  10
  22.    CTEXT   "First published in PC Magazine"
  23.                                           -1,  20,  40, 140,  10
  24.    CTEXT   "October, 13, 1992"           -1,  20,  50, 140,  10
  25.  
  26.    DEFPUSHBUTTON "OK",                 IDOK,  70,  65,  40,  12
  27.  
  28.     CONTROL    "",-1, "static", SS_BLACKRECT,      5,  82, 170,   2
  29.     
  30.     LTEXT   "Bugs is a screen saver that simulates a swarm",
  31.                                           -1,  10,  90, 160,  10
  32.  
  33.     LTEXT   "of bugs eating the pixels on the screen.  As a", 
  34.                                           -1,  10, 100, 160,  10
  35.  
  36.     LTEXT   "bug eats a pixel, the brightness of the pixel", 
  37.                                           -1,  10, 110, 160,  10
  38.  
  39.     LTEXT   "determines the energy received for that turn.", 
  40.                                           -1,  10, 120, 160,  10
  41.  
  42.     LTEXT   "The bug burns an amount of energy each turn",
  43.                                           -1,  10, 130, 160,  10
  44.     LTEXT   "in order to live.  If the total enery level",
  45.                                           -1,  10, 140, 160,  10
  46.     LTEXT   "for a bug falls below 0, the bug dies.",
  47.                                           -1,  10, 150, 160,  10
  48.  
  49.  
  50.     LTEXT   "The Sustenance level is the energy cost of",
  51.                                           -1,  10, 165, 160,  10
  52.  
  53.     LTEXT   "living for a turn.",
  54.                                           -1,  10, 175, 160,  10
  55.  
  56.     LTEXT   "The Reproduction level is how much energy",
  57.                                           -1,  10, 185, 160,  10
  58.  
  59.     LTEXT   "needed before a bug can reproduce",
  60.                                           -1,  10, 195, 160,  10
  61.  
  62.  
  63. END
  64.  
  65.  
  66.  
  67.