Registriert seit: 8. Dez 2005
Ort: am Chiemsee
304 Beiträge
Delphi 7 Professional
|
Re: In die Listbox eines anderen Programmes adden / deleten
10. Jan 2006, 08:57
Zitat von perle:
Delphi-Quellcode:
function GetItemIndex(aText : String; const CaseSensitive : Boolean = FALSE) : Integer;
function GetListView : Cardinal;
begin
// sollte von dir angepasst werden
result := FindWindow(nil,'Form1');
result := FindWindowEx(result, 0, 'TListView', nil);
end;
Zitat von API Help:
[Now Supported on Windows NT]
The FindWindowEx function retrieves the handle to a window ...
Ein Experte ist ein Mann, der hinterher genau sagen kann, warum seine Prognose nicht gestimmt hat. (Winston Churchill)
|