home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
400-499
/
ff445.lzh
/
TurboText
/
Rexx
/
SaveBlk.ttx
< prev
next >
Wrap
Text File
|
1991-01-24
|
1KB
|
52 lines
/** $VER: SaveBlk.ttx Demo 1.0 (9.12.90)
**
** Save the currently selected block to a file on disk.
**
** Written by Martin Taillefer
**/
OPTIONS RESULTS
OPTIONS FAILAT 21
PARSE ARG file
GetCursorPos
PARSE VAR RESULT cursorLine cursorColumn .
GetBlkInfo
PARSE VAR RESULT blockActive verticalBlock blockLine blockColumn .
IF blockActive = "ON" THEN DO
SetDisplayLock ON
/* save current contents of clipboard to the end of the file */
SetBookmark 0
MoveEOF
SetBookmark 191 /* pick a number, any number... */
PasteClip
MoveBookmark 0
/* print the current block */
CopyBlk
SaveClip file
/* restore the previous contents of the clipboard */
MoveBookmark 191
ClearBookmark 191
MarkBlk
MoveEOF
CutBlk
/* remark the selected block */
Move blockLine blockColumn
IF verticalBlock = "ON" THEN
MarkBlk VERTICAL
ELSE DO
MarkBlk
END
Move cursorLine cursorColumn
SetDisplayLock OFF
END