Registriert seit: 21. Okt 2004
Ort: Eckenroth
426 Beiträge
Delphi 10.1 Berlin Enterprise
|
AW: TObjectList.Free erzeugt AV
7. Feb 2015, 13:46
Musste den Code gerade noch mal etwas anpassen:
Delphi-Quellcode:
TShowModalCenter = class helper for TForm
function ShowModalCenter(ACenterForm: TForm): Integer;
end;
function TShowModalCenter.ShowModalCenter(ACenterForm: TForm): Integer;
var
X, Y: Integer;
begin
X := ((ACenterForm.Width - Width) div 2) + ACenterForm.Left;
Y := ((ACenterForm.Height - Height) div 2) + ACenterForm.Top;
if X < Screen.DesktopLeft then
X := Screen.DesktopLeft;
if Y < Screen.DesktopTop then
Y := Screen.DesktopTop;
SetBounds(X, Y, Width, Height);
Result := ShowModal;
end;
Sven
Alle sagen, das geht nicht. Da kam einer, der wusste das nicht und hat es gemacht.
|