Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

unrecognized parameter name "Source"

Status
Not open for further replies.
Oct 21, 2006
20
US
Hello,

I am using a tool called Inno setup and Compilier and I
believe it is written in Borland-Delfi code.

I am trying to compile and executable on Inno setup and
it stops me with "Unrecognized parameter name "Source".

What I am trying to do is include a few tables of foxpro
in my executable and you can see the code below:
It stops compiling right at the word "Source". I appreciate any help and thank you.

Source: DATA\codetable.cdx; DestDir: {app}\DATA
Source: DATA\codetable.DBF; DestDir: {app}\DATA
Source: DATA\contactcategories.DBF; DestDir: {app}\DATA
Source: DATA\contacts.DBF; DestDir: {app}\DATA
Source: DATA\contacts.FPT; DestDir: {app}\DATA
Source: DATA\dex.CDX; DestDir: {app}\DATA
Source: DATA\dex.DBF; DestDir: {app}\DATA
Source: DATA\dex.FPT; DestDir: {app}\DATA


Charlesmac

wnscc@wnscc.org
 
Hi.
This question does not belong here.
Ask this question at jrsoftware's newsgroup instead:
But to help you with your problem, do
check if the [Files] section header exists.
Another problem you might have, is that the identifier DATA is probably defined wrong.


Code:
[Files]
Source: "C:\Program\Inno Setup 5\Examples\MyProg.exe"; DestDir: "{app}"; Flags: ignoreversion


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-"There is always another way to solve it, but I prefer my way.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top