home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / INSTALL.ZIP / EXAMPLE.RC < prev    next >
Text File  |  1989-10-02  |  2KB  |  54 lines

  1.  
  2. /*
  3.  *                Example Install Resource File
  4.  */
  5.  
  6.  
  7. #include  "example.h"                               /* Local definitions      */
  8.  
  9.  
  10. /*
  11.  *                String Table
  12.  */
  13.  
  14.  
  15. STRINGTABLE
  16. {
  17.  MSG001, "Unable to create the Sample directory due to an error."
  18.  MSG002, "Unable to copy files to the Sample directory due to  an error."
  19.  MSG003, "Error creating  a new Program Group.  "
  20.  MSG004, "Failed.  Unable to add Sample Program entry into  Example Group."
  21.  MSG005, "Drive not ready. Please insert diskette in drive and press RETRY."
  22.  MSG006, "Failed.  Unable to add Sample Program entry due to a Duplicate Title."
  23.  MSG007, "The Example program and file installation is complete."
  24.  MSG008, "Do you wish to terminate the program installation?"
  25.  MSG009, "Unable to create the directory due to a PATH NOT FOUND error."
  26. }
  27.  
  28.  
  29. /*
  30.  *                Dialog Template
  31.  */
  32.  
  33.  
  34. DLGTEMPLATE IDDLG_CRTDIR PRELOAD MOVEABLE DISCARDABLE
  35. BEGIN
  36.     DIALOG "Create Directory", IDDLG_CRTDIR, -8, -24, 229, 59,
  37.         FS_NOBYTEALIGN | FS_DLGBORDER | WS_SAVEBITS,
  38.         FCF_SYSMENU | FCF_TITLEBAR
  39.     BEGIN
  40.     CONTROL "Enter the new Directory's path", -1, 38, 43, 162, 8, WC_STATIC,
  41.          SS_TEXT | DT_CENTER | DT_TOP | WS_VISIBLE
  42.     CONTROL "Path:", -1, 8, 27, 25, 8, WC_STATIC, SS_TEXT | DT_LEFT |
  43.         DT_TOP | WS_VISIBLE
  44.     CONTROL "", IDC_DIRPATH, 38, 27, 162, 8, WC_ENTRYFIELD, ES_LEFT |
  45.         ES_AUTOSCROLL | ES_MARGIN | WS_GROUP | WS_TABSTOP | WS_VISIBLE
  46.     CONTROL "~Create", IDC_OK, 6, 4, 38, 12, WC_BUTTON, BS_PUSHBUTTON |
  47.         BS_DEFAULT | WS_GROUP | WS_TABSTOP | WS_VISIBLE
  48.     CONTROL "Cancel", IDC_CANCEL, 56, 4, 38, 12, WC_BUTTON, BS_PUSHBUTTON |
  49.         WS_VISIBLE
  50.     CONTROL "Help", IDC_HELP, 106, 4, 38, 12, WC_BUTTON, BS_PUSHBUTTON |
  51.         WS_VISIBLE
  52.     END
  53. END
  54.