I’ve created a batch file, but when I run it and it loads, it goes down to where the user input is, cutting off part of my program.
Is there any way to make it start at the top and make the user have to manually scroll it down to look at what he’s entering in?
If you mean you generate a lot of text to the console (more than one page worth) and then ask the user a question, like:
I see only one quick solution. Don’t just generate all that output. Pass it through a pager of some sort, something like:
Then the user will be able to read it from the top and once
moreexits, the user will be asked for a response.If you want something more robust or pretty-looking, I’d be looking at doing that with a well-crafted executable rather than a batch file.