home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / samples / sample14 / sample14.dlg < prev    next >
Encoding:
Text File  |  1998-01-29  |  1.2 KB  |  31 lines

  1. #ifndef OS2_INCLUDED
  2.    #include <os2.h>
  3. #endif
  4. DLGINCLUDE 1 "C:\source\OOL\samples\sample14\dialog.h"
  5.  
  6. DLGTEMPLATE IDM_MODELESSDIALOG LOADONCALL MOVEABLE DISCARDABLE
  7. BEGIN
  8.     DIALOG  "Modeless Dialog", IDM_MODELESSDIALOG, 106, 40, 148, 84, 
  9.             WS_VISIBLE, FCF_SYSMENU | FCF_TITLEBAR
  10.     BEGIN
  11.         DEFPUSHBUTTON   "OK", PUSH_OK, 5, 4, 40, 14
  12.         LTEXT           "Press <OK> to leave the dialog!", 102, 6, 17, 137, 
  13.                         14, DT_WORDBREAK
  14.         LTEXT           "If you click on the main-window you see that it is "
  15.                         "still active", 103, 6, 38, 103, 40, DT_WORDBREAK
  16.     END
  17. END
  18.  
  19. DLGTEMPLATE IDM_MODALDIALOG LOADONCALL MOVEABLE DISCARDABLE
  20. BEGIN
  21.     DIALOG  "Modal Dialog", IDM_MODALDIALOG, 55, 46, 176, 92, , FCF_SYSMENU | 
  22.             FCF_TITLEBAR
  23.     BEGIN
  24.         DEFPUSHBUTTON   "OK", PUSH_OK, 2, 6, 40, 14
  25.         LTEXT           "Press <OK> to leave to modal dialog!", 201, 3, 20, 
  26.                         172, 12, DT_WORDBREAK
  27.         LTEXT           "If you click on the main-window you see that it is "
  28.                         "not active", 103, 5, 48, 103, 40, DT_WORDBREAK
  29.     END
  30. END
  31.