home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / shtdwn01.zip / Source / shutdown.rc < prev   
Text File  |  1994-01-30  |  2KB  |  38 lines

  1. /**
  2.  **  PM Shutdown v0.1
  3.  **
  4.  **  (c) 1994 by Carsten Wimmer
  5.  **
  6.  **/
  7.  
  8. #include <os2.h>
  9. #include "shutdown.h"
  10.  
  11. DLGTEMPLATE ID_DIALOG LOADONCALL MOVEABLE DISCARDABLE
  12. BEGIN
  13.     DIALOG  "Shutdown", ID_DIALOG, 200, 100, 267, 113, WS_VISIBLE,
  14.             FCF_TITLEBAR | FCF_SYSMENU | FCF_SYSMODAL | FCF_SCREENALIGN
  15.             PRESPARAMS PP_BACKGROUNDCOLOR, 0x0000FF00L
  16.     BEGIN
  17.         DEFPUSHBUTTON   "Yeah, do it !", ID_BUTTON_OK, 15, 11, 115, 52
  18.                         PRESPARAMS PP_FOREGROUNDCOLOR, 0x00000000L
  19.                         PRESPARAMS PP_BACKGROUNDCOLOR, 0x00FFFFFFL
  20.                         PRESPARAMS PP_FONTNAMESIZE, "16.Cooper Black"
  21.         CTEXT           "Do you really want to", 104, 5, 88, 261, 17, 
  22.                         DT_VCENTER
  23.                         PRESPARAMS PP_FOREGROUNDCOLOR, 0x00FF0000L
  24.                         PRESPARAMS PP_BACKGROUNDCOLOR, 0x00FFFF00L
  25.                         PRESPARAMS PP_FONTNAMESIZE, "18.Stop"
  26.         CTEXT           "shutdown this machine?", 105, 5, 71, 261, 17, 
  27.                         DT_VCENTER
  28.                         PRESPARAMS PP_FOREGROUNDCOLOR, 0x00FF0000L
  29.                         PRESPARAMS PP_BACKGROUNDCOLOR, 0x00FFFF00L
  30.                         PRESPARAMS PP_FONTNAMESIZE, "18.Stop"
  31.         PUSHBUTTON      "Nah, not now.", ID_BUTTON_CANCEL, 141, 11, 115, 52
  32.                         PRESPARAMS PP_FOREGROUNDCOLOR, 0x00FFFFFFL
  33.                         PRESPARAMS PP_BACKGROUNDCOLOR, 0x00000000L
  34.                         PRESPARAMS PP_FONTNAMESIZE, "16.Cooper Black"
  35.     END
  36. END
  37.  
  38.