I wish to have a small dialog based application which is passed command line parameters, so, using VC++6 I ran the application wizard and chose an MFC dialog application.
This is not automatically equipped with command-line parameters. So I went to MSDN to refresh my memory on these. MSDN states that all C++ programs have either a main() or a wmain() function and that the argc, etc. arguments go here. The application I just created does not have these.
As there is obviously a function which is the entry point to the application, can I stick the arguments here? I did try this, but I am not convinced that I was actually editing the correct function. (Can I find the function which is acting as the main() function from the project settings or similar?)
Basically, how do I get my program to read command line parameters.
Also as a sideline. For a simple program, which this is, I really do not want to make it an MFC application, and thereby over a MB in size. Are there application wizard template libraries that will allow me to make a non-MFC dialog application?
Yes, see CWinApp:ParseCommandLine. Also take a look at the CCommandLineInfo class.
In MFC applications, the entry point function is 'initInstance()', like
main()
orwmain()
. UseCWinApp::m_lpCmdLine
ininitInstance()
to access the command line.Use GetCommandLine(), which returns the name of the file being executed, followed by the arguments.
The application member m_lpCmdLine (used like
yourApp.m_lpCmdLine
) contains only the arguments.There is also CWinApp::ParseCommandLine() that you may find useful.
Also try the ATL COM wizard to create a non-MFC dialog application (chose the .exe option, not .dll).
To get the raw command line use the following code (will work on any Win32 / MFC application):
nArgc should be 1 when no arguments given and larger than 1 when there are. Then, pArgv1 will be the first argument, and so on...