I did some googling to try to answer this question but even after that I\'m not quite clear about something. Is it possible to create a console app from VB6?
I\'ve go
You can use Karl E. Peterson's code at http://vb.mvps.org/samples/Console/ to create a very full-featured console application.
Simpler ones can be made by relinking the compiled VB6 EXE for the console subsystem. Karl goes into this at that same Web page. Scroll down for LinkConsole.vbs there.
See this article.
Or you could rewrite the VB6 app as a VBScript program.
Yes. It's also possible to create totally headless applications (which I've done a few times in the past). This link gives an example with a code snippet.