hacibumbala
Programmer
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?
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?