码迷,mamicode.com
首页 > 编程语言 > 详细

MFC Dialog程序如何接收命令行参数

时间:2014-11-11 19:09:07      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   使用   sp   for   strong   on   2014   

在MFC程序中,可以用以下几种方法来获取命令行参数。 

为方便说明,我们假设执行了命令:C:\test\app.exe -1 -2  


方法一 : 使用API ::GetCommandLine()获取应用程序名称及参数列表

在OninitDialog()中添加代码

CString sCmdline = ::GetCommandLine();
AfxMessageBox(sCmdline);
将获取到 "C:\test\app.exe  -1 -2 "


方法二 : 

在OnInitDialog()中添加代码

for (int i = 0; i < __argc; i++)
{
	__argv[i];
	AfxMessageBox(__argv[i]);

}
将依次得到"app.exe","-1", "-2"


方法三 :

CString sCmdline = AfxGetApp()->m_lpCmdLine;

将获取到 "-1 -2 ",AfxGetApp()->m_lpCmdLine 只包含参数。

 

MFC Dialog程序如何接收命令行参数

标签:style   blog   ar   使用   sp   for   strong   on   2014   

原文地址:http://blog.csdn.net/jiangqin115/article/details/41014181

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!