I'm completing a program in Turbo Pascal 7 for Windows as part of a programming class school project, essentially we've been given a brief and told to go off by ourselves and implement and code the program.
The brief states to create a program where a user can enter a message, select a letter shift, and then each letter will be 'encrypted' according to that shift (essentially ROT13). Easy.
I've got in running in the Turbo Pascal for Windows 7 terminal window, and it outputs the resulting encrypted text:
writeln('Encrypted message is ', line ,' for a shift of ', shift);
readln;
What I'd like to do is extend beyond this by going one step further and allow the user to copy the output (var: line) to their windows clipboard. I've been searching far and wide across the internet for two days now and have yet to come across anything which can help me. I'm now starting to wonder if Pascal even has the ability to do this?
Cheers, Luke.