home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 16 / CD_ASCQ_16_0994.iso / news / 4611 / fw16d.ins / IDE / PROGRAMS / DLG.PRG next >
Text File  |  1994-05-21  |  728b  |  31 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  10,  15 TO  22,  65 ;
  15.       BRUSH oBrush
  16.  
  17.    @ 203, 132 BUTTON "&Button" SIZE  90,  37 PIXEL OF oWnd ;
  18.       ACTION MsgInfo( "Not defined yet!" )
  19.  
  20.    @ 203, 423 BUTTON "&Button" SIZE  90,  37 PIXEL OF oWnd ;
  21.       ACTION MsgInfo( "Not defined yet!" )
  22.  
  23.    @ 161, 131 BUTTON "&Button" SIZE  90,  37 PIXEL OF oWnd ;
  24.       ACTION MsgInfo( "Not defined yet!" )
  25.  
  26.    ACTIVATE WINDOW oWnd
  27.  
  28. return nil
  29.  
  30. //----------------------------------------------------------------------------//
  31.