Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- ClipOn 3.0 Reference - c_captscrn() http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 C_CAPTSCRN()

 DESCRIPTION

 The C_CAPTSCRN() function will save the characters, in a specified
 area of the screen, to a given file.  All characters in the area
 are written to the DOS text file in a readable form.  If the
 specified file already exists, then the screen text is appended to
 the end of the file.

 SYNTAX

 C_CAPTSCRN(st_row, st_col, end_row, end_col [,file] [,network])

 PARAMETERS

 st_row (N), st_col (N), end_row (N), and end_col (N) define the
 upper left and lower right screen coordinates of the area to capture.

 file (C) is the full DOS file name to write the captured screen.
 If the specified file exists, the captured screen text is appended
 to the end.  If file is not specified, the default DOS file name
 "SCREEN.TXT" is used.

 network (L) indicates whether or not the program is running on a
 network.  If the program is running on a network pass true (.T.) so
 the file can be opened with the proper share access, otherwise pass
 false (.F.).  If network is not specified, the default of false
 (.F.) is used.

 RETURNS

 There is no return value.

 EXAMPLES

 && Captures area to file scrn1.txt
 c_captscrn(10,10,20,70,"SCRN1.TXT")

 && Captures entire screen and appends to file scrn1.txt
 c_captscrn(0,0,24,79,"SCRN1.TXT")


See Also: C_READSCRN() C_GETATTR()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson