Delphi run console application from form application
How to run a console application from a standard Delphi form application, but to run it hidden? Also i want to write commands in that console application from my form application. How ca开发者_JS百科n i do those things?
And a personal request for the people who have the newest version of indy10. I have trouble to compile the console application and if is possible some of you to compile it for me and give me link to download. Please, that will be nice if you do me that favor. :)
To run a console app and hide the console window, call CreateProcess
passing CREATE_NO_WINDOW
in the creation flags parameter.
精彩评论