Das hier sollte abhelfen. Einfach alle Frames von TFrameBase ableiten und fertig
Delphi-Quellcode:
type
TFrameBase =
class(TFrame)
protected
procedure PaintWindow(
DC: HDC);
override;
end;
procedure TFrameBase.PaintWindow(
DC: HDC);
begin
// nichts machen
end;
Ab Delphi 2006 ist das nicht mehr notwendig.