Scalabium Software

SMExport advertising
Knowledge for your independence'.
Home Delphi and C++Builder tips


#8: How can I disable a form movement?

Always in any tip collection I saw a question: how can I move a window by hit in any part of form? But I never saw a reverse question: how to disable a movement.

type
  TyourForm = class(TForm)
  private
    { Private declarations }
    procedure WMNCHitTest(var Message: TWMNCHitTest); message WM_NCHITTEST;
  end;

procedure TyourForm.WMNCHitTest(var Message: TWMNCHitTest);
begin
 inherited;

 with Message do
   if Result = HTCAPTION then
     Result := HTNOWHERE;
end;


Published: August 6, 1999

See also
 
Paradox Password Recovery
Viewer for TNEF-files (winmail.dat)
DBISAM Viewer
Paradox to Text converter
ExcelFile Viewer
Paradox ActiveX
DBLoad
Clarion Viewer
SMDBGrid
ABA Document Convert
 
 


Contact to webmaster

 

Borland Software Code Gear Scalabium Delphi tips

Copyright© 1998-2025, Scalabium Software. All rights reserved.
webmaster@scalabium.com

SMReport Autogenerated