Quote:
Originally Posted by shighfield
Any chance you could get the program to write a log file and display nothing on the screen at all?
I've come up with an interesting little wrapper to launch it and minimize to the tray.
If you could create a command line switch to not display anything at all on the screen I could make my little wrapper look pretty nice. <G> Doing it in Virtual Pascal and will release the source code as I do with everything else I code.
|
Quick way would be to redirect the output to a file (append '>file-log.txt') or to the null device on windows! (append '>nul').
The former still has some of impserve's output going to the screen so maybe the >nul is the way to go for now, that is, until ashkulz chimes in!