通过自定义文件启动程序并读取

BOOL CXXXApp::InitInstance()
{
	CCommandLineInfo cmdInfo;
	ParseCommandLine(cmdInfo);


	CString strFilePathName = cmdInfo.m_strFileName;
	if (!strFilePathName.IsEmpty())
	{
		dlg.m_strFileName = strFilePathName;
	}
}


你可能感兴趣的:(通过自定义文件启动程序并读取)