procedure TForm1.FormCreate(Sender: TObject); begin //Sichern der ursprünglichen WindowProc der Listview FListViewOldWndProc := ListView1.WindowProc;
//Subclassing: Umleiten der WindowProc auf unsere eigene Procedur Listview1.WindowProc := ListViewNewWndProc; end;
procedure TForm1.ListViewNewWndProc(var Msg: TMessage); var hdn: ^THDNotify; begin
if Msg.Msg = WM_NOTIFY then
begin hdn := Pointer(Msg.lParam); //Abfangen und löschen der HDN_BeginTrack Botschaft if (hdn.hdr.code = HDN_BeginTrackW) or (hdn.hdr.code = HDN_BeginTrackA) then Msg.Result := 1 else FListViewOldWndProc(Msg); end // ansonsten Botschaft an die ursprüngliche WindowProc weiterreichen else FListViewOldWndProc(Msg); end;
procedure TForm1.FormDestroy(Sender: TObject); begin //vor dem Beenden Original WindowProc wiederherstellen ListView1.WindowProc := FlistViewOldWndProc;
FListViewOldWndProc := nil; end;