Inno 设置错误结束时参数数量无效;?
Inno setup Error Invalid number of parameters on end;?
不知道为什么会报错。
对不起我的英语,我来自波兰语。
[Tasks]
Name: czysto; Description: "Instalacja na CZYSTO (Kasuje zawartosc RES_MODS - ZALECANE!)"; Components: Dictionaries; Flags: exclusive
Name: normalna; Description: "Normalna Instalacja (dla zaawansowanych użytkowników)"; Components: Dictionaries; Flags: exclusive unchecked
Name: cache; Description: "Wyczysc pliki CACHE"; GroupDescription: "Dodatki:"; Components: Dictionaries; Flags: unchecked
[Code]
function NextButtonClick(CurPageID: Integer): Boolean;
begin
Result := True;
if (CurPageID = wpSelectTasks) and IsTaskSelected('czysto') then
DelTree(ExpandConstant('{app}\test*'))
end; ERROR HERE!!!!!!!!!!!!!!!!!!!!!!!
文本错误:参数数量无效。
求助...
DelTree 比您提供的参数多了几个参数。
function DelTree(const Path: String;
const IsDir, DeleteFiles, DeleteSubdirsAlso: Boolean): Boolean;
您应该将 Inno Setup documentation 添加为书签以备将来参考。
不知道为什么会报错。 对不起我的英语,我来自波兰语。
[Tasks]
Name: czysto; Description: "Instalacja na CZYSTO (Kasuje zawartosc RES_MODS - ZALECANE!)"; Components: Dictionaries; Flags: exclusive
Name: normalna; Description: "Normalna Instalacja (dla zaawansowanych użytkowników)"; Components: Dictionaries; Flags: exclusive unchecked
Name: cache; Description: "Wyczysc pliki CACHE"; GroupDescription: "Dodatki:"; Components: Dictionaries; Flags: unchecked
[Code]
function NextButtonClick(CurPageID: Integer): Boolean;
begin
Result := True;
if (CurPageID = wpSelectTasks) and IsTaskSelected('czysto') then
DelTree(ExpandConstant('{app}\test*'))
end; ERROR HERE!!!!!!!!!!!!!!!!!!!!!!!
文本错误:参数数量无效。
求助...
DelTree 比您提供的参数多了几个参数。
function DelTree(const Path: String;
const IsDir, DeleteFiles, DeleteSubdirsAlso: Boolean): Boolean;
您应该将 Inno Setup documentation 添加为书签以备将来参考。