摘要: Delphi7 调用IE 浏览器选项.uses ShellAPI;begin ShellExecute(Handle, 'open', 'control.exe', 'INETCPL.CPL', Nil, SW_SHOWNORMAL);end; 阅读全文
posted @ 2015-05-06 21:33 donpps 阅读(114) 评论(0) 推荐(0) 编辑
摘要: Delphi7 打开 Windows 资源管理器转到文件夹并选中指定文件.var strFilePath: string;begin ShellExecute(Handle, 'open', PChar('explorer.exe'), PChar('/select,' + strFilePat... 阅读全文
posted @ 2015-01-29 17:34 donpps 阅读(594) 评论(0) 推荐(0) 编辑
摘要: Delphi7 调用 Windows 照片查看器打印对话框.uses ShellAPI;var strPictureFilePath: string;begin ShellExecute(Handle, 'print', PChar(strPictureFilePath), nil, nil, ... 阅读全文
posted @ 2015-01-29 17:26 donpps 阅读(753) 评论(0) 推荐(1) 编辑