i want to write an application so that i can pass a string to application using the command line.
MyApp.exe "Hello Wold"
i may be misunderstanding it, but the MFC command line parsing appears to only look at specific flags.
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);
ParseCommandLine() calls ParseParam which is expecting these flags: /p, /pt, /dde, /Automation, and /Embedding
how do i use my own stuff?
thanks,
NyTyme
MyApp.exe "Hello Wold"
i may be misunderstanding it, but the MFC command line parsing appears to only look at specific flags.
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);
ParseCommandLine() calls ParseParam which is expecting these flags: /p, /pt, /dde, /Automation, and /Embedding
how do i use my own stuff?
thanks,
NyTyme