vc使用技巧汇集

源代码在线查看: 弹出文件的属性窗口.txt

软件大小: 117 K
上传用户: li444255
关键词: 使用技巧
下载地址: 免注册下载 普通下载 VIP

相关代码

				弹出文件的属性窗口
				SHELLEXECUTEINFO ShExecInfo ={0};
				ShExecInfo.cbSize = sizeof(SHELLEXECUTEINFO);
				ShExecInfo.fMask = SEE_MASK_INVOKEIDLIST ;
				ShExecInfo.hwnd = NULL;
				ShExecInfo.lpVerb = "properties";
				ShExecInfo.lpFile = "c:\"; //也可以是文件
				ShExecInfo.lpParameters = ""; 
				ShExecInfo.lpDirectory = NULL;
				ShExecInfo.nShow = SW_SHOW;
				ShExecInfo.hInstApp = NULL; 
				ShellExecuteEx(&ShExecInfo);			

相关资源