home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tolkit45.zip / os2tk45 / samples / pm / dragdrop / dragdrop.dlg < prev    next >
Text File  |  1999-05-11  |  3KB  |  57 lines

  1. /**************************************************************************
  2.  *  File name  :  dragdrop.dlg
  3.  *
  4.  *  Description:  The DRAGDROP dialog file defines templates
  5.  *                used by the resource compiler in dialogs
  6.  *
  7.  *  Concepts   :  RC
  8.  *
  9.  *  API's      :  [none]
  10.  *
  11.  *  Copyright (C) 1991 IBM Corporation
  12.  *
  13.  *      DISCLAIMER OF WARRANTIES.  The following [enclosed] code is
  14.  *      sample code created by IBM Corporation. This sample code is not
  15.  *      part of any standard or IBM product and is provided to you solely
  16.  *      for  the purpose of assisting you in the development of your
  17.  *      applications.  The code is provided "AS IS", without
  18.  *      warranty of any kind.  IBM shall not be liable for any damages
  19.  *      arising out of your use of the sample code, even if they have been
  20.  *      advised of the possibility of such damages.                                                    *
  21.  *************************************************************************/
  22.  
  23. DLGTEMPLATE IDD_PRODUCTINFO LOADONCALL MOVEABLE DISCARDABLE
  24. BEGIN
  25.     DIALOG  "Product information", IDD_PRODUCTINFO, 8, -43, 276, 137,
  26.             FS_NOBYTEALIGN | WS_VISIBLE, FCF_SYSMENU | FCF_TITLEBAR
  27.     BEGIN
  28.         CONTROL         IDR_BITMAP, IDC_BITMAP, 111, 76, 21, 21, WC_STATIC,
  29.                         SS_BITMAP | WS_GROUP | WS_VISIBLE
  30.         CTEXT           "(C) Copyright IBM Corporation 1991. All Rights rese"
  31.                         "rved.", 256, 7, 54, 255, 8
  32.         CTEXT           "International Business Machines Corp.", 257, 7, 34,
  33.                         255, 8
  34.         CTEXT           "OS/2 is a registered trademark of", 258, 7, 44, 255,
  35.                         8
  36.         DEFPUSHBUTTON   "OK", IDC_OK, 111, 8, 45, 15
  37.     END
  38. END
  39.  
  40. DLGTEMPLATE IDD_OPEN LOADONCALL MOVEABLE DISCARDABLE
  41. BEGIN
  42.     DIALOG "Select subdirectory", IDD_OPEN, 53, 60, 222, 55,
  43.             FS_NOBYTEALIGN | WS_VISIBLE, FCF_TITLEBAR | FCF_SYSMENU
  44.     BEGIN
  45.         CONTROL "Enter subdirectory name:", IDD_STATICTEXT, 5, 36, 200, 8,
  46.                 WC_STATIC, SS_TEXT | DT_LEFT | DT_TOP | WS_GROUP | WS_VISIBLE
  47.         CONTROL "", IDD_EDIT, 9, 22, 200, 8, WC_ENTRYFIELD, ES_LEFT |
  48.                 ES_AUTOSCROLL | ES_MARGIN | WS_TABSTOP | WS_VISIBLE
  49.         CONTROL "~OK", 1, 9, 3, 38, 13, WC_BUTTON, BS_PUSHBUTTON | BS_DEFAULT |
  50.                 WS_TABSTOP | WS_VISIBLE
  51.         CONTROL "Cancel", 2, 59, 3, 38, 13, WC_BUTTON, BS_PUSHBUTTON |
  52.                 WS_VISIBLE | NOT WS_TABSTOP
  53.         PUSHBUTTON "Help", 3, 109, 3, 38, 13, BS_HELP | NOT WS_TABSTOP
  54.     END
  55. END
  56. /***************************  End of dragdrop.dlg  ***********************/
  57.