home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 16
/
CD_ASCQ_16_0994.iso
/
news
/
4611
/
fw16d.ins
/
SAMPLES
/
TESTMDI2.PRG
< prev
next >
Wrap
Text File
|
1994-06-07
|
449b
|
22 lines
// Starting learning MDI enviroments
// First exercise
#include "FiveWin.ch"
//----------------------------------------------------------------------------//
function Main()
local oWnd
DEFINE WINDOW oWnd FROM 1, 1 To 22, 75 ;
TITLE "This is a MDI enviroment" MDI
DEFINE BUTTONBAR OF oWnd
ACTIVATE WINDOW oWnd
return nil
//----------------------------------------------------------------------------//