vote up 12 vote down star
2

I'm developing a C++ command-line application in Visual Studio and need to debug it with command-line arguments. At the moment I just run the generated .exe file with the arguments I need (like this program.exe -file.txt) , but this way I can't debug. Is there somewhere I can specify the arguments for debugging?

Thanks a lot.

flag

3 Answers

vote up 18 vote down check

Yes, it's on the Debuging section of the properties page of the project.

In VS 2008, right click the project, choose properties, go to the Debugging section -- there is a box for command line arguments.

link|flag
Thanks, that was quick! – maciej.gryka Nov 18 '08 at 13:29
2  
Funny how a search of Visual Studio help finds about 55,000 irrelevant matches; but google puts this thread second from the top... Thank You! Thank You! and Thank You! – corlettk May 29 at 3:34
Worked well for me too... thx – Kyle B. Jun 23 at 14:03
And me. Thanks. – Pauk Sep 11 at 10:48
vote up 3 vote down

The Mozilla.org FAQ on debugging Mozilla on Windows is of interest here.

In short, the Visual Studio debugger can be invoked on a program from the command line, allowing one to specify the command line arguments when invoking a command line program, directly on the command line.

This looks like the following for Visual Studio 8 or 9

 devenv /debugexe 'program name' 'program arguments'

It is also possible to have an explorer action to start a program in the Visual Studio debugger.

link|flag
vote up 2 vote down

Even if you do start the executable outside Visual Studio, you can still use the "Attach" command to connect Visual Studio to your already-running executable. This can be useful e.g. when your application is run as a plug-in within another application.

link|flag

Your Answer

Get an OpenID
or

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