本文整理自网络,侵删。
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中使用ixmlhttprequest如何用post方式提交带参
Delphi 手机app打开一个安卓系统支持的文件,比如 pdf
更多相关阅读请进入《Delphi》频道 >>