vote up 2 vote down star

I have a VB6 console app and it uses command line parameters. For debugging, I would like to be able to start it from the IDE and ideally be able to pass it those parameters to see how it normally operates. I realize I could set a breakpoint at the appropraite place and use the Immediate window to set the values outside the command line, and I have used a couple of other workarounds in the past, but is there a way to do this as if I had actually started it as a console app?

flag

1 Answer

vote up 5 vote down check

Select Project | Properties, select the Make tab, enter the command line params in the Command Line Arguments text box. These will apply when run in the IDE, but be aware that they will also compile in to the EXE, so remove them before you compile.

link|flag
Great, thanks! Now that you mention it, I recall seeing this in the past, but I haven't done much VB6 for a few years, and I have forgotten a lot. – Cyberherbalist Aug 12 at 18:46
Actually, Command Line Arguments on the Make tab are design-time only. They do not get compiled into the exe. – C-Pound Guru Aug 13 at 13:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.