What are the Command Line options for the VB6 IDE

2019-01-24 06:24发布

问题:

I'm doing batch compiling and need to specific the output directory.

回答1:

/run

/runexit - Compile and then run it. Exit VB IDE when project returns to design mode.

/make or /m projectname - compiles an makes exe using the existing settings in proj file

/out filename

/outdir path Specifies a directory path to place all output files in when using /make

/d

/cmd

/mdi or /sdi

  • and a couple of others.

Run vb6.exe /? for more information.



回答2:

A bit of Google work suggests that such a list of options can be obtained by going to the directory containing vb6.exe in Command Prompt and running

vb6.exe /?


回答3:

/make /outdir path



标签: vb6