type TForm1 = class(TForm) ListBox1: TListBox; procedure FormCreate(Sender: TObject); private { Private declarations } public { Public declarations } end;
function EnumWnds(Wnd: HWND; Data: LParam): Bool; stdcall;
var Form1: TForm1;
implementation
{$R *.dfm}
function EnumWnds(Wnd: HWND; Data: LParam): Bool; var Text: string; begin SetLength(Text, 256);
if GetWindowText(Wnd, PChar(Text), 255) <> 0 then Form1.ListBox1.Items.AddObject(Text, Pointer(Wnd));
Result := True; end;
procedure TForm1.FormCreate(Sender: TObject); begin EnumWindows(@EnumWnds, 0); end;
end.
/ZIRON
Synes godt om
Ny brugerNybegynder
Din løsning...
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.