delphi 获取所有窗口标题


本文整理自网络,侵删。

 unit Unit1;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Buttons;

type
TForm1 = class(TForm)
BitBtn1: TBitBtn;
Memo1: TMemo;
procedure BitBtn1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.BitBtn1Click(Sender: TObject);
var
  h: HWnd;
  p: array[0..254] of char;
begin
  h := GetWindow(Handle, GW_HWNDFIRST);
  while h <> 0 do
  begin
    if GetWindowText(h, p, 255) > 0 then Memo1.Lines.Add(p);
    h := GetWindow(h, GW_HWNDNEXT);
  end;
end;

end.

相关阅读 >>

Delphi wininet带进度下载http文件

Delphi获取flash文件的影片时长,原始尺寸,帧数等信息

Delphi获取其它进程窗口句柄的3种方法

Delphi firemonkey应用程序中显示时隐藏虚拟键盘

Delphi idsmtp发送邮件

Delphi 全局变量 hinstance 到底是在什么时候赋值的?

decodedatetime:将一个tdatetime变量拆分成它的日期/时间 部分

Delphi获取进程占用内存

Delphi 增加/获得windows用户帐号

Delphi 如何在toolbar中的toolbutton上显示文字

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



打赏

取消

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

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

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

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

评论

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