| View previous topic :: View next topic |
| Author |
Message |
Carlos Guest
|
Posted: Sun Nov 30, 2003 3:00 am Post subject: Background program in windows |
|
|
Hello.
I have a pascal program that donīt send anything to the screen (it didnt
have writes or writeln).
And i want to execute it in background. My OS is WindowsXP
how can i do that?
|
|
| Back to top |
|
 |
Maarten Wiltink Guest
|
Posted: Sun Nov 30, 2003 2:58 pm Post subject: Re: Background program in windows |
|
|
"Carlos" <croxy (AT) mixmail (DOT) com> wrote
| Quote: | I have a pascal program that donīt send anything to the screen (it didnt
have writes or writeln).
And i want to execute it in background. My OS is WindowsXP
how can i do that?
|
Find out about the SrvAny service available in the NT4 Resource Kit, and
probably in later versions.
It will in fact work with console executables that _do_ write to the
screen (simply losing the output); don't know about GUI programs.
Groetjes,
Maarten Wiltink
|
|
| Back to top |
|
 |
Nicholas Sherlock Guest
|
Posted: Sun Nov 30, 2003 6:55 pm Post subject: Re: Background program in windows |
|
|
Carlos wrote:
| Quote: | Hello.
I have a pascal program that donīt send anything to the screen (it
didnt have writes or writeln).
And i want to execute it in background. My OS is WindowsXP
how can i do that?
|
It's a console application?
The easiest way I have found to do this is to just remove {$APPTYPE
CONSOLE}. The application won't pop up a console, and since it has no forms
it won't pop those up either.
Cheers,
Nicholas Sherlock
|
|
| Back to top |
|
 |
|