home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 16
/
CD_ASCQ_16_0994.iso
/
news
/
4611
/
fw16d.ins
/
SOURCE
/
FUNCTION
/
MEMOEDIT.PRG
< prev
next >
Wrap
Text File
|
1994-04-16
|
671b
|
25 lines
// Warning: Under development. Not available yet!
#include "FiveWin.ch"
//----------------------------------------------------------------------------//
function MemoEdit( cText, nTop, nLeft, nBottom, nRight, cTitle )
local oDlg
DEFAULT nTop := 3, nLeft := 5, nBottom := 20, nRight := 70,;
cTitle := "MemoEdit"
DEFINE DIALOG oDlg FROM nTop, nLeft TO nBottom, nRight TITLE cTitle
@ 0, 0 GET cText OF oDlg SIZE ( nRight - nLeft ) * 4, ( nBottom - nTop ) * 6
@ nBottom - nTop - 2, 2 BUTTON "&Aceptar"
ACTIVATE DIALOG oDlg
return
//----------------------------------------------------------------------------//