Componentes.Terceros.jvcl/official/3.36/examples/JvInterpreterDemos/JvInterpreterTest/samples/sample - -1.pas
2009-02-27 12:23:32 +00:00

26 lines
393 B
ObjectPascal

unit a;
function main;
var
pDlg: TForm;
pControl: TControl;
pPoint: TPoint;
begin
pDlg := TForm.Create(nil);
try
pControl := TControl.Create(pDlg);
try
pControl.Parent := pDlg;
pPoint.x := 0;
pPoint.y := 0;
pControl.ClientToScreen(pPoint);
finally
pControl.Free;
end;
finally
pDlg.Free;
end;
end;
end.