whats new ¦  programming tips ¦  indy articles ¦  intraweb articles ¦  informations ¦  links ¦  interviews
 misc ¦  tutorials ¦  Add&Win Game

Tips (1541)

Database (90)
Files (137)
Forms (107)
Graphic (114)
IDE (21)
Indy (5)
Internet / LAN (130)
IntraWeb (0)
Math (76)
Misc (126)
Multimedia (45)
Objects/
ActiveX (51)

OpenTools API (3)
Printing (35)
Strings (83)
System (266)
VCL (242)

Top15

Tips sort by
component


Search Tip

Add new Tip

Add&Win Game

Advertising

30 Visitors Online


 
...prevent, that the user can resize the columns of a TListView?
Autor: Fred Schwarzer
[ Print tip ]  

Tip Rating (4):  
     


private
  
FListViewOldWndProc: TWndMethod;
  procedure ListViewNewWndProc(var Msg: TMessage);
end;

{....}

implementation

uses
  
CommCtrl;


procedure TForm1.FormCreate(Sender: TObject);
begin
  
//Sichern der ursprünglichen WindowProc der Listview
  
FListViewOldWndProc := ListView1.WindowProc;

  //Subclassing: Umleiten der WindowProc auf unsere eigene Procedur
  
Listview1.WindowProc := ListViewNewWndProc;
end;

procedure TForm1.ListViewNewWndProc(var Msg: TMessage);
var
  
hdn: ^THDNotify;
begin
  if 
Msg.Msg = WM_NOTIFY then
  begin
    
hdn := Pointer(Msg.lParam);
    //Abfangen und löschen der HDN_BeginTrack Botschaft
    
if (hdn.hdr.code = HDN_BeginTrackW) or (hdn.hdr.code = HDN_BeginTrackA) then
      
Msg.Result := 1
    else
      
FListViewOldWndProc(Msg);
  end
  
// ansonsten Botschaft an die ursprüngliche WindowProc weiterreichen
  
else 
    
FListViewOldWndProc(Msg);
end;

procedure TForm1.FormDestroy(Sender: TObject);
begin
  
//vor dem Beenden Original WindowProc wiederherstellen
  
ListView1.WindowProc := FlistViewOldWndProc;
  FListViewOldWndProc  := nil;
end;


 

Rate this tip:

poor
very good


Copyright © by SwissDelphiCenter.ch
All trademarks are the sole property of their respective owners