Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Handle Window Messages of TreeView

Status
Not open for further replies.

hacibumbala

Programmer
Jan 12, 2003
1
TR
Hi!

I would like to control Window Messages of a TreeView control. To control WM of a form I declare like:

type
TForm1 = class(TForm)
blah blah blah...
procedure WndProc(var Message: TMessage); overrride;
end;

procedure TForm1.WndProc(var Message: TMessage);
begin
blah blah blah...
end;

What should I declare for a TreeView?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top