Hi im using inno setup to create an install
I would like a tickbox at the end that says begin import and initiates an instal of an ELD file.
I have tried this
[Run]
Filename: "{app}\TEST.ELD"; Description: "{cm:LaunchProgram,test}"; Flags: postinstall shellexec;
but it kicks up this error
"Unable to execute file:
c:\program files\test\test.eld
ShellExecuteex failed; code 1156"
Does anyone know how to fix this or have a way that if the tickbox is ticked when they click finish it initiates this code?
[Code]
var
ErrorCode: Integer;
procedure LoadELD;
begin
ShellExec('open', ExpandConstant('{app}\TEST.ELD'),'', '', SW_SHOW,
ewNoWait, ErrorCode)
end;
Thanks