(CodeLib-Manager)
Registriert seit: 10. Jun 2002
4.648 Beiträge
Delphi XE Professional
|
Re: Count aus einer "fremden" Listbox
13. Nov 2003, 17:35
Delphi-Quellcode:
var
hListBox, hHandleDesFensters : HWND;
begin
hHandleDesFensters := FindWindow(nil, 'FormName')
hListBox := FindWindowEx(hHandleDesFensters, 0, 'TListBox', nil);
ItemCount := SendMessage(hListBox, LB_GETCOUNT, 0, 0);
end;
Thomas
|
|
Zitat
|