home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / infidx13.zip / infidx.rc < prev    next >
Text File  |  1993-07-02  |  2KB  |  40 lines

  1. /*===========================================================================
  2.  * infidx.rc  -- for documentation see infidx.c
  3.  *
  4.  * $Log:    infidx.rc $
  5.  *Revision 1.2  93/07/02  11:10:34  UWE
  6.  *Added positioning possibility by user and REINIT-button.
  7.  *
  8.  *Revision 1.1  93/07/01  22:09:00  UWE
  9.  *Initial revision
  10.  *
  11.  *===========================================================================*/
  12. #define  INCL_NLS   1
  13. #include <os2.h>
  14. #include "infidx.h"
  15.  
  16. /*********************************************/
  17. /* the area text window                      */
  18. /*********************************************/
  19. ICON ID_FW_AREA infidx.ico
  20.  
  21. /****************************/
  22. /* the selection dialog box */
  23. /****************************/
  24.                                                 /*   x   y   dx   dy */
  25. DLGTEMPLATE UK_SEL_DLG LOADONCALL MOVEABLE DISCARDABLE
  26. BEGIN                                           
  27.     DIALOG  "INFIDX - *.INF-index/starter", UK_SEL_DLG,  
  28.                                                      0,  0, 238,  88,
  29.             WS_VISIBLE, FCF_TITLEBAR | FCF_ICON 
  30.     BEGIN
  31.         LISTBOX         UK_SEL_LBOX              ,   5, 20, 227,  70
  32.         ICON            ID_FW_AREA, UK_SEL_ICON  ,   5,  1,  32,  32
  33.         DEFPUSHBUTTON   "OPEN"    , UK_SEL_OPEN  ,  45,  2,  40,  15
  34.         PUSHBUTTON      "EXIT"    , UK_SEL_CANCEL,  95,  2,  40,  15
  35.         PUSHBUTTON      "REINIT"  , UK_SEL_REINIT, 145,  2,  40,  15
  36.         PUSHBUTTON      "ABOUT"   , UK_SEL_ABOUT , 195,  2,  40,  15
  37.     END
  38. END
  39.  
  40.