home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 16 / CD_ASCQ_16_0994.iso / news / 4611 / fw16d.ins / SAMPLES / TESTSTYL.PRG < prev    next >
Text File  |  1994-05-15  |  689b  |  24 lines

  1. #include "FiveWin.ch"
  2.  
  3. //----------------------------------------------------------------------------//
  4.  
  5. function Main()
  6.  
  7.    local oDlg
  8.  
  9.    DEFINE DIALOG oDlg FROM 8, 8 TO 20, 40 ;
  10.       TITLE "Testing Style Clause in Dialogs" ;
  11.       STYLE nOr( WS_CAPTION, WS_SYSMENU, WS_THICKFRAME )
  12.  
  13.    @ 2, 2 SAY "This Dialog will have just"  OF oDlg
  14.    @ 3, 2 SAY "a Caption and a SysMenu"     OF oDlg
  15.    @ 4, 2 SAY "and a ThickFrame!!!"         OF oDlg
  16.    @ 5, 2 SAY "-Don't use ThickFrame..."    OF oDlg
  17.    @ 6, 2 SAY "with Dialogs... <g>"         OF oDlg
  18.  
  19.    ACTIVATE DIALOG oDlg
  20.  
  21. return nil
  22.  
  23. //----------------------------------------------------------------------------//
  24.