home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
install
/
reqtools
/
rexxreqtools
/
examples
/
ttxarexx.lha
/
IncludeFile.ttx
< prev
next >
Wrap
Text File
|
1993-10-21
|
782b
|
43 lines
/* $VER: IncludeFile.ttx 1.0 (19.02.93) */
OPTIONS RESULTS
GetFileInfo
PARSE VAR RESULT Lines .
FileName = rtFileRequest( "", "", "Select file to include", "_Include", "RT_PubScrName=TURBOTEXT RTFI_Flags=FREQF_PatGad" )
IF rtResult = 1 THEN DO
SetDisplayLock ON
IF Lines = 1 THEN DO
InsertLine /* Or else the include will be erased again.. :) */
MoveUp
END
/* Save current contents of clipboard to the end of the file */
SetBookmark 0
MoveEOF
SetBookmark 191
PasteClip
MoveBookmark 0
OpenClip FileName
IF RC=0 THEN DO
PasteClip
END
/* Restore the previous contents of the clipboard */
SetBookMark 0
MoveBookmark 191
ClearBookmark 191
MarkBlk
MoveEOF
CutBlk
MoveBookMark 0
SetDisplayLock OFF
END
CALL rtFreeFileBuffer