都可以,在控件的源码中有一过程:
procedure Register;
begin
  { Register this component and show it in the 'System' tab
    of the component palette }  RegisterComponents('System', [TCommPortDriver]);
                      ^^^^^^------所注册的palette
end;

解决方案 »

  1.   


    补充:都可以,建议新建一个。
    在控件的源码中有一过程:
    procedure Register;
    begin
      { Register this component and show it in the 'System' tab
        of the component palette }  RegisterComponents('System', [控件名称]);
                          ^^^^^^------所注册的palette
     到所注册的palette 就可以找到名字为 ‘控件名称’ 的控件。
     
    end;