- 博客(3)
- 收藏
- 关注
转载 Delphi7 调用 Windows 控制面板
Delphi7 调用IE 浏览器选项. uses ShellAPI; begin ShellExecute(Handle, 'open', 'control.exe', 'INETCPL.CPL', Nil, SW_SHOWNORMAL); end; 转载于:https://www.cnblogs.com/donpps/p/4483283.htm...
2015-05-06 21:33:00
194
转载 Delphi7 打开 Windows 资源管理器转到文件夹并选中指定文件
Delphi7 打开 Windows 资源管理器转到文件夹并选中指定文件. var strFilePath: string; begin ShellExecute(Handle, 'open', PChar('explorer.exe'), PChar('/select,' + strFilePath), nil, SW_NORMAL); end; 转载...
2015-01-29 17:34:00
522
转载 Delphi7 调用 Windows 照片查看器打印对话框
Delphi7 调用 Windows 照片查看器打印对话框. uses ShellAPI; var strPictureFilePath: string; begin ShellExecute(Handle, 'print', PChar(strPictureFilePath), nil, nil, SW_SHOW); end; 转载于:https...
2015-01-29 17:26:00
339
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅