using Turbo Delphi.NET explorer, I want to add several dynamic
TToolButton instances but I can't seem to understand how to do it.
Any directions?
TIA,
Andrew
var ToolBtn : TToolButton;
begin
ToolBtn := TToolButton.Create( Self );
ToolBtn.Parent := Self;
end;