cut and paste entire page in txt file
cut and paste entire page in txt file
(OP)
How to copy entire page from sess0 and paste directlly in c:\mytxt.txt?
note:
during the process a press PF8 to go to the next page and i need to append to just part of page alreday copied into to txt file.
note:
during the process a press PF8 to go to the next page and i need to append to just part of page alreday copied into to txt file.
RE: cut and paste entire page in txt file
RE: cut and paste entire page in txt file
CODE
look in the HELP files for "Open statement:description" for further information
RE: cut and paste entire page in txt file
But the code write into txt all in one line!!!!!!!!!!!!
I need to paste into the txt exactlly wath i see in session...similar:
AAAAAAA BBBBBBBB CCCCCCC
AAAAAAA BBBBBBBB CCCCCCC
AAAAAAA BBBBBBBB CCCCCCC
AAAAAAA BBBBBBBB CCCCCCC
AAAAAAA BBBBBBBB CCCCCCC
AAAAAAA BBBBBBBB CCCCCCC
AAAAAAA BBBBBBBB CCCCCCC
And not in one line, similar:
AAAAAAA BBBBBBBB CCCCCCC AAAAAAA BBBBBBBB CCCCCCC
tkx!
RE: cut and paste entire page in txt file
something like this, maybe?
CODE
RE: cut and paste entire page in txt file
The code now work great!
Sorry for my bad english (I'm Italian)
RE: cut and paste entire page in txt file
Now work great!
RE: cut and paste entire page in txt file
no need to apologize. there are folks that would actually use the first code instead of the second. glad i was able to help you.
rem
RE: cut and paste entire page in txt file
RE: cut and paste entire page in txt file
when you scrape one entire screen, in this case (1,1,24,80), that means there are 1920 characters in total (80 characters per row * 24 = 1920).
then you can loop through the 1920 characters using the MID function
either way is just as quick. it's a matter of preference.