home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / rwl025.zip / RWLX.DLG < prev    next >
Text File  |  2000-06-10  |  2KB  |  41 lines

  1. /**********************************************************************/
  2. /*                                                                    */
  3. /*  RWL - A demonstration program placed in the Public Domain         */
  4. /*        by it author, R L Walsh, June 10, 2000                      */
  5. /*                                                                    */
  6. /**********************************************************************/
  7.  
  8. #ifndef OS2_INCLUDED
  9.    #include <os2.h>
  10. #endif
  11. DLGINCLUDE 1 "RWLX.H"
  12.  
  13. DLGTEMPLATE IDD_MAIN LOADONCALL MOVEABLE DISCARDABLE
  14. BEGIN
  15.     DIALOG  "RWL alpha v0.25", IDD_MAIN, 60, 83, 352, 128, 0, 
  16.             FCF_SYSMENU | FCF_TITLEBAR | FCF_TASKLIST
  17.     BEGIN
  18.         CTEXT           "~PID", -1, 10, 114, 38, 8, DT_MNEMONIC
  19.         LISTBOX         IDC_PIDLB, 10, 37, 38, 76
  20.         PUSHBUTTON      "~Refresh", IDC_PIDUPDT, 8, 10, 42, 14, 
  21.                         BS_NOPOINTERFOCUS
  22.         GROUPBOX        "", -1, 59, 2, 2, 126, NOT WS_GROUP
  23.         LTEXT           "Waiting for initialization...", IDC_CAP, 70, 114, 
  24.                         272, 8
  25.         MLE             "", IDC_MLE, 70, 35, 272, 76, MLS_WORDWRAP | 
  26.                         MLS_VSCROLL | MLS_IGNORETAB
  27.         AUTORADIOBUTTON "~BeginLIBPATH", IDC_BEG, 86, 19, 80, 10, WS_GROUP | 
  28.                         WS_TABSTOP
  29.         AUTORADIOBUTTON "~EndLIBPATH", IDC_END, 86, 5, 80, 10
  30.         PUSHBUTTON      "~Set", IDC_SET, 196, 10, 48, 14, BS_NOPOINTERFOCUS | 
  31.                         WS_GROUP
  32.         PUSHBUTTON      "~Undo", IDC_UNDO, 266, 10, 48, 14, 
  33.                         BS_NOPOINTERFOCUS
  34. /* this button is hidden as part of a kludge to prevent the Enter key
  35.    from changing the selected PID unless the listbox has the focus */
  36.         DEFPUSHBUTTON   "", -1, -10, -10, 0, 0, BS_NOPOINTERFOCUS | WS_GROUP | 
  37.                         NOT WS_TABSTOP
  38.     END
  39. END
  40.  
  41.