Please tell, how can I use (is it possible?) newlisp without appearing console window?
Also is it possible to disable console window appearing if use (! ...) function?
Thanks alot...
Can I use newlisp without console window?
-
- Posts: 2
- Joined: Fri Jul 21, 2006 12:20 pm
- Location: Belarus
Hi Tentaclius,
Welcome to newLisp, the best programming language on earth!
The answer to your question is: YES, you can.
http://www.turtle.dds.nl/run/index.html
Furthermore, instead of using '!' to launch a binary, you may also use '(process)', which has an option to hide the application window.
Cheers
Peter
Welcome to newLisp, the best programming language on earth!
The answer to your question is: YES, you can.
http://www.turtle.dds.nl/run/index.html
Furthermore, instead of using '!' to launch a binary, you may also use '(process)', which has an option to hide the application window.
Cheers
Peter
Code: Select all
(import "kernel32.dll" "FreeConsole")
(FreeConsole)
just add this as first two lines of your script
Folks,
The RUN-wrapper has been improved. Now processes started with 'run.exe' can be terminated with 'stop.exe'. For details look here:
http://www.turtle.dds.nl/run/index.html
Also additional processes spawned by the executed newLisp programs (similar to Unix "child-processes") will be terminated, to keep your processlist clean.
Enjoy
Peter
The RUN-wrapper has been improved. Now processes started with 'run.exe' can be terminated with 'stop.exe'. For details look here:
http://www.turtle.dds.nl/run/index.html
Also additional processes spawned by the executed newLisp programs (similar to Unix "child-processes") will be terminated, to keep your processlist clean.
Enjoy
Peter