home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: InfoMgt / InfoMgt.zip / shr93.zip / SHRINST.DLG < prev    next >
Text File  |  1993-07-12  |  2KB  |  40 lines

  1. /*
  2.  * OS/2 Work Place Shell Sample Program - Installation Dialogs
  3.  *
  4.  * Copyright (C) 1993 IBM Corporation
  5.  *
  6.  *   DISCLAIMER OF WARRANTIES.  The following [enclosed] code is
  7.  *   sample code created by IBM Corporation.  This sample code is
  8.  *   not part of any standard or IBM product and is provided to you
  9.  *   solely for the purpose of assisting you in the development of
  10.  *   your applications.  The code is provided "AS IS".  ALL
  11.  *   WARRANTIES ARE EXPRESSLY DISCLAIMED, INCLUDING THE IMPLIED
  12.  *   WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  13.  *   PURPOSE.  IBM shall not be liable for any damages arising out
  14.  *   of your use of the sample code, even if IBM has been advised of
  15.  *   the possibility of such damages.
  16.  */
  17.  
  18. #include <os2.h>
  19. #include "shrinst.h"
  20.  
  21. POINTER 1 LOADONCALL MOVEABLE DISCARDABLE shrinst.ico
  22.  
  23. DLGTEMPLATE IDD_INSTALL LOADONCALL MOVEABLE DISCARDABLE
  24. BEGIN
  25.     DIALOG  "Address Book - Installation", IDD_INSTALL, 58, 22, 200, 124, , 
  26.             FCF_SYSMENU | FCF_TITLEBAR | FCF_TASKLIST
  27.     BEGIN
  28.         LTEXT           "Please enter the path where you copied the Address "
  29.                         "Book dynamic link library, SHARE.DLL, including the"
  30.                         " drive letter.", 0, 14, 78, 174, 34, DT_WORDBREAK
  31.         ENTRYFIELD      "C:\\OS2\\DLL", ID_PATH, 16, 56, 110, 8, ES_MARGIN | 
  32.                         WS_GROUP
  33.         LTEXT           "SHARE.DLL", 0, 132, 56, 62, 8
  34.         DEFPUSHBUTTON   "~Install", DID_OK, 6, 4, 40, 14, WS_GROUP
  35.         PUSHBUTTON      "~Uninstall", ID_UNINSTALL, 49, 4, 46, 14, NOT 
  36.                         WS_TABSTOP
  37.         PUSHBUTTON      "~Cancel", DID_CANCEL, 98, 4, 40, 14, NOT WS_TABSTOP
  38.     END
  39. END
  40.