本文整理自网络,侵删。
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 从给定字符串中截取n个字节的字符(解决汉字截取乱码问题)
在xp/2k 下实现 win+ctrl+del 等键的屏蔽的方法
更多相关阅读请进入《Delphi》频道 >>