Hi,
I am trying to store text from the clipboard into a variable (string/variable). But the size of the textual matter is greater than the storage size of the two data types.I have to ultimately print the textual matter to a text file. So, the code ends up printing only half of the text.
The only other way I know is splitting the text up by lines and storing each line in an array and then printing each of these lines into the file using a loop.
Does anyone else have a better/shorter way of doing this.