#include
static SHELLEXECUTEINFO se;
//////////////////////////////////////////////////////
se.hwnd=NULL;
se.lpVerb="properties";
se.lpFile="C:\\test.html";
se.fMask=SEE_MASK_NOCLOSEPROCESS
|SEE_MASK_INVOKEIDLIST |SEE_MASK_FLAG_NO_UI ;
se.lpParameters=NULL;
se.lpDirectory=NULL;
se.cbSize=sizeof(se);
::ShellExecuteEx(&se);
阅读(1760) | 评论(0) | 转发(0) |