Delphi - 通过WinAPI WinExec直接调用系统工具
2021-02-05 23:14
标签:命令 pad 调用 col 系统 mstsc orm 画图 计算 看如下代码: Delphi - 通过WinAPI WinExec直接调用系统工具 标签:命令 pad 调用 col 系统 mstsc orm 画图 计算 原文地址:https://www.cnblogs.com/jeremywucnblog/p/11433019.html 1 WinExec(‘mspaint.exe‘, SW_SHOWNORMAL); // SW_SHOWNORMAL = 1 系统画图
2
3 WinExec(‘write.exe‘, SW_SHOWNORMAL); // SW_SHOWNORMAL = 1 写字板
4
5 WinExec(‘mstsc.exe‘, SW_SHOWNORMAL); // SW_SHOWNORMAL = 1 远程桌面
6
7 WinExec(‘calc.exe‘, SW_SHOWNORMAL); // SW_SHOWNORMAL = 1 计算器
8
9 WinExec(‘notepad.exe‘, SW_SHOWNORMAL); // SW_SHOWNORMAL = 1 记事本
10
11 WinExec(‘cmd.exe‘, SW_SHOWNORMAL); // SW_SHOWNORMAL = 1 命令提示符
文章标题:Delphi - 通过WinAPI WinExec直接调用系统工具
文章链接:http://soscw.com/index.php/essay/51540.html