Simple Way to Create a Consol App in VB 6.0
:confused: I need to code a consol app in VB. No Form, no visual evidence its there. It just does its thing, fixes a database via ADO and shuts itself down when it is finished.
This type of app doesn't seem to show up in the Wizard but I am happy to code by hand if someone could point me in the right direction.
# 1 Re: Simple Way to Create a Consol App in VB 6.0
You can create a new standard exe project, remove the form, add a module and create a sub named "Main()". If you need a timer or any object that require event, you will need to add a form (invisible) to your project as a recipient.
You will still need Windows to run your EXE (can't run in dos mode). To end the program, use the "END" command.
JeffB
JeffB at 2007-11-9 23:00:42 >
