home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Almathera Ten Pack 4: Demo 1
/
almathera_demo1.bin
/
commercial
/
turbotext
/
rexx
/
saveblk.ttx
< prev
next >
Wrap
Text File
|
1995-03-16
|
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