MB Software Solutions, LLC wrote on 2010-04-19:
> Is PASCAL scripting in Inno just like the Pascal I learned bazillion
> (actually 21) years ago? Sheesh...gotta search the internet for
> Pascal syntax again...I completely forgot most of it.
>
> Tips from fellow Inno [Code] section programmers?
>
>
>
Mike,
Try this untested:
**********
[file]
Source: "filename"; DestDir: "{app}"; AfterInstall: ShouldRunInstall();
Flags: onlyifdoesntexist
[code]
Var
runInstall: Boolean;
function ShouldRunInstall();
begin
runInstall := True;
end;
function InitializeSetup(): Boolean;
begin
runInstall := False;
Result := True;
end;
**********
Tracy Pearson
PowerChurch Software
_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message:
http://leafe.com/archives/byMID/profox/001101cae008$632b6930$29823b...@com
** All postings, unless explicitly stated otherwise, are the opinions of the
author, and do not constitute legal or medical advice. This statement is added
to the messages for those lawyers who are too stupid to see the obvious.