home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR24 / TIMUP121.ZIP / SOURCE.ZIP / timeup.rc < prev    next >
Text File  |  1993-05-20  |  4KB  |  88 lines

  1. ; TIMEUP.RC - Ronald Van Iwaarden 1993
  2. ; Modified from VMEM.RC - Copyright (c) 1992 M.B.Mallory
  3.  
  4. #include <os2.h>
  5. #include "timeup.h"
  6.  
  7. POINTER    TIMEUP_ICON    TIMEUP.ico
  8.  
  9. DLGTEMPLATE IDD_HELP
  10.   {
  11.   DIALOG "TimeUp Help information" 0, -45,-75,350,226,, 
  12.                 FCF_DLGBORDER | FCF_TITLEBAR
  13.     {
  14.     LTEXT "TimeUP consists simply of a title bar and a system menu. Data is displayed"  -1,5, 216,340,8
  15.     LTEXT "  in the title bar itself. The maximum time that can be recorded is"  -1,5, 208,340,8
  16.     LTEXT "  49 Days, 17 hours, and 2 minutes"          -1,5, 200,340,8
  17.  
  18.     LTEXT "OPTIONS can be accessed by selecting it from the system menu"    -1,5, 188,340,8
  19.  
  20.     LTEXT "TimeUP:"                                             -1,5, 176,340,8
  21.     LTEXT "  If checked the program will display the amount of time that has elapsed" -1,5, 168,340,8
  22.     LTEXT "  since the system was booted"        -1,5, 160,340,8
  23.  
  24.     LTEXT "Record TimeUP:"                                       -1,5, 148,340,8
  25.     LTEXT "  If checked the program will display the maximum recorded Time UP and"   -1,5, 140,340,8
  26.     LTEXT "  append the time with an R."   -1,5, 132,340,8
  27.     LTEXT "  NOTE: The record time is flushed if restore defaults is checked when"       -1,5, 124,340,8
  28.     LTEXT "  this app is terminated!"  -1,5, 116,340,8
  29.     LTEXT "  This is also toggled by double clicking the right mouse button on the" -1,5, 132,340,8
  30.     LTEXT "  title bar"                     -1,5, 108,340,8
  31.  
  32.     LTEXT "Save screen position:"                               -1,5, 96,340,8
  33.     LTEXT "  If checked when the program is closed, the current position of TimeUP"        -1,5, 88,340,8
  34.     LTEXT "  on the screen and the record Time UP is saved."-1,5, 80,340,8
  35.  
  36.     LTEXT "Restore defaults:"                                  -1,5, 68,340,8
  37.     LTEXT "  If checked when the program is closed, all saved TimeUP data is deleted" -1,5, 60,340,8
  38.     LTEXT "  and hard coded defaults are used the next time the program is started "   -1,5, 52,340,8
  39.     LTEXT "  This option should be performed before removing TimeUP from your system"   -1,5, 44,340,8
  40.     LTEXT "  NOTE: If this is checked, Maximum TimeUP will be flushed when the"    -1,5, 36,340,8
  41.     LTEXT "         program is exited!!"    -1,5, 28,340,8
  42.  
  43.     DEFPUSHBUTTON  "~OK" DID_OK, 155, 3, 40, 14, WS_GROUP
  44.     }
  45.   }
  46.  
  47. DLGTEMPLATE IDD_ABOUT
  48.   {
  49.   DIALOG "About  TimeUp" 0, -20,-40,180,85,, FCF_DLGBORDER | FCF_TITLEBAR
  50.     {                                                      
  51.     ICON   TIMEUP_ICON                            -1,  78,69,  0,0
  52.     CTEXT "TimeUp  1.21        R. Van Iwaarden"   -1,  10,59,160,8
  53.     CTEXT "Adapted from Vmem 1.0"   -1,  10,51,160,8
  54.     CTEXT "(C) 1992 M.B.Mallory"   -1,  10,43,160,8
  55.     CTEXT "Displays the amount of time"       -1,  10,31,160,8
  56.     CTEXT "since last reboot of OS/2 2.O"-1,  10,22,160,8  
  57.  
  58.     DEFPUSHBUTTON  "~OK" DID_OK, 70,  5,  40, 14,WS_GROUP
  59.     }
  60.   }
  61.  
  62. #define  ARB  AUTORADIOBUTTON
  63. #define  ACB  AUTOCHECKBOX
  64. #define  CB   CHECKBOX
  65.  
  66. DLGTEMPLATE IDD_OPTIONS
  67.   {
  68.   DIALOG "TIMEUP  Options" 0, -15,-112,140,102,,FCF_DLGBORDER | FCF_TITLEBAR
  69.     {
  70.     GROUPBOX    "Termination control"           -1,  10,24,120,35
  71.       CB  "~Save position & Record"   ACB_SAVESCRPOS,  15,39,110,10,
  72.         BS_3STATE | WS_VISIBLE | WS_TABSTOP | WS_GROUP
  73.       ACB "~Restore defaults"          ACB_RESTORE,  15,29,110,10
  74.  
  75.     DEFPUSHBUTTON "~OK"                     DID_OK,  10, 5, 40,14,WS_GROUP
  76.     PUSHBUTTON    "~About"               DID_ABOUT,  50, 5, 40,14
  77.     PUSHBUTTON    "~Help"                 DID_HELP,  90, 5, 40,14
  78.  
  79.     GROUPBOX    "Display Control"           -1,  10,62,120,35
  80.       ARB "~TimeUP"          ARB_TIMEUP,  15,77,110,10
  81.       ARB  "Record Time UP"   ARB_RECORD,  15,67,110,10,
  82.  
  83.     }
  84.   }
  85.  
  86.  
  87.  
  88.