home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 16 / CD_ASCQ_16_0994.iso / news / 4611 / fw16d.ins / IDE / DLG.PRG next >
Text File  |  1994-06-07  |  736b  |  32 lines

  1. #include "FiveWin.ch"
  2.  
  3. static oWnd
  4.  
  5. //----------------------------------------------------------------------------//
  6.  
  7. function Main()
  8.  
  9.    local oBrush
  10.  
  11.    DEFINE BRUSH oBrush 
  12.  
  13.    DEFINE WINDOW oWnd TITLE "" ;
  14.       FROM  12,  17 TO  24,  68 ;
  15.       BRUSH oBrush
  16.  
  17.    @  47,  10 LISTBOX oLbx ITEMS { "One", "Two", "Three", "", "", "" } ;
  18.       SIZE 296, 133 PIXEL OF oWnd
  19.  
  20.    @ 199, 450 BUTTON "&Button" SIZE  83,  35 PIXEL OF oWnd ;
  21.       ACTION MsgInfo( "Not defined yet!" )
  22.  
  23.    @   6,  78 GET oGet SIZE 227,  33 PIXEL OF oDlg 
  24.  
  25.    @   5,   9 SAY "&Label" SIZE  64,  33 PIXEL OF oWnd
  26.  
  27.    ACTIVATE WINDOW oWnd
  28.  
  29. return nil
  30.  
  31. //----------------------------------------------------------------------------//
  32.