Mit IntToStr
Edit: Ist es normal, dass da ein Leerzeichen bei der Quelltext-Einrückung verschluckt wird?
Delphi-Quellcode:
function EnumTargetWindow(WindowHandle: HWND; lParam1: lParam): Boolean; stdcall;
begin
Result := True; //Alle Fenster werden aufgelistet
Form1.Listbox1.Items.Add(IntToStr(WindowHandle));
end;
Dani H.