How to display "Properties" system dialog for multiple files?
-
Hi, how can I display system "Properties" dialog for more than one file/directory? Like in Explorer when I have selected multiple files/directories, I click right button and from context menu a select "Properties". Now I use this code: SHELLEXECUTEINFO sei; ZeroMemory(&sei, sizeof(sei)); sei.cbSize = sizeof(sei); sei.hwnd = AfxGetMainWnd()->GetSafeHwnd(); sei.nShow = SW_SHOW; sei.lpFile = filePath; sei.lpVerb = _T("properties"); sei.fMask = SEE_MASK_INVOKEIDLIST; ShellExecuteEx(&sei) It works fine for single file/directory. But how can I display that dialog for more than one file/directory? Thanks in advance.
-
Hi, how can I display system "Properties" dialog for more than one file/directory? Like in Explorer when I have selected multiple files/directories, I click right button and from context menu a select "Properties". Now I use this code: SHELLEXECUTEINFO sei; ZeroMemory(&sei, sizeof(sei)); sei.cbSize = sizeof(sei); sei.hwnd = AfxGetMainWnd()->GetSafeHwnd(); sei.nShow = SW_SHOW; sei.lpFile = filePath; sei.lpVerb = _T("properties"); sei.fMask = SEE_MASK_INVOKEIDLIST; ShellExecuteEx(&sei) It works fine for single file/directory. But how can I display that dialog for more than one file/directory? Thanks in advance.