component template in turbo delphi explorer?

Posted by Fred Green p15901 on September 13, 2007

I have set up components and a procedures, that I have stored in Component Templates. For example: in Panel2Edits I saved this:

interface
...
type
TForm1 = class(TForm)
Panel1: TPanel;
Edit1: TEdit;
Button1: TButton;
Edit2: TEdit;
Label1: TLabel;
procedure Button1Click(Sender: TObject);
...
implementation
...

procedure TForm1.Button1Click(Sender: TObject);
begin
Label1.Caption := Edit1.Text + '/' + Edit2.Text;
end;

In my old version of Delphi this is simple. But does Turbo Delphi Explorer also have Component Templates, because I read on your website that Turbo Delphi Explorer does not allow to install additional components on the component palette? I have a lot of component templates, and I only want to switch to Turbo Delphi Explorer if it has the "Component Template" feature. Can you please help me?

Follow Ups