Delphi获取进程PID


本文整理自网络,侵删。

 Delphi获取进程PID

unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
Label1: TLabel;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
var
hwin:dword;
pid:dword;
begin
hwin:=FindWindow(nil,'新建 文本文档.txt - 记事本');
getwindowthreadprocessid(hwin,pid);
if pid=0 then
label1.caption:='wrong'
else
label1.Caption :=inttostr(pid);
end;
end.

相关阅读 >>

Delphi建立快捷方式的函数:createshortcut()

Delphi shellexecute调用系统命令关闭计算机

Delphi分别连接ms sqlserver、oracle和access数据库的连接字符串

Delphi comparestr 函数

Delphi 修改快捷方式

Delphi编写iis过滤器实例

Delphi 从给定字符串中截取n个字节的字符(解决汉字截取乱码问题)

Delphi 正确得到本地ip

Delphi点击网页弹出的alert对话框的确定按钮

在xp/2k 下实现 win+ctrl+del 等键的屏蔽的方法

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...