本文整理自网络,侵删。
uses Windows, ShlObj, ShellAPI;
function GetSpecialPath(CSIDL: word): string; var s: string;begin SetLength(s, MAX_PATH); if not SHGetSpecialFolderPath(0, PChar(s), CSIDL, true) then s:=''; Result:=PChar(s);end;
beginShellExecute(0,'open','cmd.exe',Pchar('/c rundll32 "'+GetSpecialPath($26)+'\Windows Photo Viewer\PhotoViewer.dll",ImageView_Fullscreen G:\xxxx\ '+ParamStr(1)),nil,SW_HIDE);
//ShellExecute(0,'open','cmd.exe',Pchar('/c rundll32 "'+GetSpecialPath($26)+'\Windows Photo Viewer\PhotoViewer.dll",ImageView_Fullscreen '+ParamStr(1)),nil,SW_HIDE);end.
相关阅读 >>
Delphi里的compile和build都能产生可执行文件,有什么区别啊?
Delphi xe android 调试错误:connection closed gracefully
更多相关阅读请进入《Delphi》频道 >>