I noted which lazarus forms are "bigger" from what delphi forms...
My comparison (image hosted in Geocities Brazil):
(http://br.geocities.com/hipernetjr/images/sizesystem.gif)
This is a problem, in some cases as in utilisation of WINAPI
In simple code as:
SetWindowPos(Self.Handle,hwnd_TopMost,0,0,Self.Width,Self.Height,0);
the form will be smaller (-8 and -27 pixels)...
I can solve with
SetWindowPos(Self.Handle,hwnd_TopMost,0,0,Self.Width+8,Self.Height+27,0);
or
SetWindowPos(Self.Handle,hwnd_TopMost,0,0,Self.Width,Self.Height,swp_noSize or swp_noMove);
but my question is: This is a bug or "lazarus exclusive feature"???