Wow, _ScreenPrint is precisely what I need. Just ran a small test program and this works great.
My plan was to grab responses from a user and save them all to a text file so that these could be played back as a script at a later without the user having to re-input all these responses again. The code to save all responses is easy, but then I would also need for every single input statement that first checked to see if there was a script file, then open the file, grab the appropriate line, stuff it into the input variable and bypass the prompt to the user since a script is present.
By simply stuffing all the previous responses into the keyboard buffer like this I won't need all that additional code.
This is brilliant!
As always, thanks for the help.