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

link|improve this question
.ELD has an association? do you know the full path of the associated app? – Alex K. May 1 '11 at 12:05
By "tickbox", do you mean a "checkbox"? – Andreas Rejbrand May 1 '11 at 12:22
Hi Thanks for responding.. the fullpath can change from pc to pc. the code above works fine if i do it like this Source: "DDS_2.5.ELD"; DestDir: "{app}"; Flags: ignoreversion; AfterInstall: LoadELD i would like a checkbox just before finish t give them the chance to view the readme or run this install script? – TraderUK May 1 '11 at 13:27
all im trying to do it have a tickbox at the end of the install that calls that code? – TraderUK May 1 '11 at 17:44
Try adding nowait to the flags for [Run] section, I see you have ewNoWait in ShellExec but didn't have nowait in [Run], may be that was the difference – satuon May 4 '11 at 7:35
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.