Dev 도움말 파일 등록
Code:
https://www.devexpress.com/Support/Documentation/download.xml?platform=vcl-dev-docs#content
…and unpack the files anywhere. The code below registers all CHM files. Just create a small vcl application, drop a button and paste the code.
Code:
uses
System.Win.Registry,
System.IOUtils,
System.Types;
function RegisterHelpFiles(const Path: string; const DeleteKey: Boolean): Integer;
const
CHtmlHelpRoot = 'SOFTWARE\Embarcadero\BDS\17.0\Help\HtmlHelp1Files';
var
Files: TStringDynArray;
FileName: string;
Reg: TRegistry;
Name: string;
begin
Files := TDirectory.GetFiles(Path, '*.chm');
if (Length(Files) = 0) then
Exit(0);
Reg := TRegistry.Create();
try
Result := 0;
Reg.RootKey := HKEY_CURRENT_USER;
if (Reg.OpenKey(CHtmlHelpRoot, False)) then
begin
for FileName in Files do
begin
Name := Concat(TPath.GetFileNameWithoutExtension(FileName), ' Help');
if (DeleteKey) then
begin
if (Reg.DeleteValue(Name)) then
Inc(Result);
end
else
begin
Reg.WriteString(Name, FileName);
Inc(Result);
end;
end;
end;
finally
Reg.Free();
end;
end;
procedure TMainForm.Button1Click(Sender: TObject);
var
Path: string;
DeleteKey: Boolean;
Count: Integer;
begin
Path := '[Insert the Path of the DevExpress Help Files]';
DeleteKey := False;
Count := RegisterHelpFiles(Path, DeleteKey);
//Setting to unregister the CHM files
//DeleteKey := True;
//Count := RegisterHelpFiles(Path, DeleteKey);
ShowMessage(Format('Entries changed: %d', [Count]));
end;
Replace the placeholder "[Insert the Path of the DevExpress Help Files]"with the path where the CHM files was unpacked. Compile and run the method "RegisterHelpFiles(…)". All CHM from the path will be registered. Please don't forget to restart Delphi, before you use the DevExpress Help Files.This procedure should also work for Delphi XE8, but the Registry key must be adapted in this case.
https://www.board4allcz.eu/showthread.php?t=625889
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.