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 >
Wrap
Text File
|
1994-05-15
|
689b
|
24 lines
#include "FiveWin.ch"
//----------------------------------------------------------------------------//
function Main()
local oDlg
DEFINE DIALOG oDlg FROM 8, 8 TO 20, 40 ;
TITLE "Testing Style Clause in Dialogs" ;
STYLE nOr( WS_CAPTION, WS_SYSMENU, WS_THICKFRAME )
@ 2, 2 SAY "This Dialog will have just" OF oDlg
@ 3, 2 SAY "a Caption and a SysMenu" OF oDlg
@ 4, 2 SAY "and a ThickFrame!!!" OF oDlg
@ 5, 2 SAY "-Don't use ThickFrame..." OF oDlg
@ 6, 2 SAY "with Dialogs... <g>" OF oDlg
ACTIVATE DIALOG oDlg
return nil
//----------------------------------------------------------------------------//