我正在开发一个delphi 7
用于快速安装的组件,而无需触摸IDE
我正在根据 Marjan Venema的这个 SO 答案制作一个简单的安装程序。
procedure TForm1.Button1Click(Sender: TObject);
var
sDelphi7PackageName : string;
sDelphi7Path,fileSource,fileDest : string;
sDelphi7packBPL,sDelphi7PathMenuBPL : string;
begin
sDelphi7Path:=ReadRegistryValues('\Software\Borland\Delphi\7.0',FALSE,'RootDir',1,TRUE);{<-- returns the 'C:\Program Files\Borland\Delphi7' }
{#1. Install .bpl}
sDelphi7BPL:=sDelphi7Path+'\Projects\Bpl\Pack.bpl';
WriteValueToRegisTry('\Software\Borland\Delphi\7.0\Known Packages',FALSE,sDelphi7BPL,'Delphi 7 compo Bpl File'); {<-- writes to the registry}
fileSource:=ExtractFilePath(Application.ExeName)+'\Packages\comPack.bpl';
fileDest:=sDelphi7BPL;
CopyFile(PChar(fileSource), PChar(fileDest), False);
end;
这很好用![在此处输入图像描述][2]
C:\Program Files\Borland\Delphi7\Projects\Bpl\Pack.bpl
。但是组件安装了idhidden
谁能告诉我如何unhide
安装component
?
编辑
可能有用:
1)我已经有了bpl
组件的文件,所以我直接复制到delphi 7
目录C:\Program Files\Borland\Delphi7\Projects\Bpl
并修改注册表HKEY_CURRENT_USER\Software\Borland\Delphi\7.0\Known Packages
。
2)register
组件的过程
implementation
procedure Register;
begin
RegisterComponents('comp', [Tcomp]);
end;