clivebuckwheat
Oct 22 2008, 11:13 PM
From within a batch file?, is there a utility that can simulate pressing the enter key?
jaclaz
Oct 23 2008, 12:51 AM
Some programs will accept:
CODE
ECHO. | <program_name>
Basically by
CODE
ECHO.
you produce an empty line (only made of a CR+LF) and then you
CODE
| <program_name>
pipe it to the program.
jaclaz