|   | Order and save right now! 20% off with the 729824315 dicscount code for Ultimate Pack and any another product for Delphi from Greatis Programming! | 
⤷ Move form by client area
If you want, that user can move your form by client area, then use WM_NCHITTEST handler to achieve this cool effect:In the Forms private declarations add this
  procedure WMNCHitTest(var Msg: TWMNCHitTest);
    message WM_NCHITTEST;
procedure TForm1.WMNCHitTest(var Msg: TWMNCHitTest);
begin
 DefaultHandler(Msg);
 if Msg.Result=HTCLIENT then
   Msg.Result:=HTCAPTION;
end;
- 
							More for developers
 
					 
							