home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 16
/
CD_ASCQ_16_0994.iso
/
news
/
4611
/
fw16d.ins
/
SAMPLES
/
TESTTEXT.PRG
< prev
next >
Wrap
Text File
|
1994-05-30
|
486b
|
21 lines
#include "FiveWin.ch"
//----------------------------------------------------------------------------//
function Main()
local oWnd, oText, oFont
DEFINE WINDOW oWnd FROM 2, 2 TO 20, 70 TITLE "Editing Text"
DEFINE FONT oFont NAME "Courier" SIZE 8, 14
oText = TText():New( 1, 1, 500, 300, "FwBorl.prg", oWnd )
oText:oFont = oFont
ACTIVATE WINDOW oWnd
return nil
//----------------------------------------------------------------------------//