Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

Migration Issue


4 replies to this topic

Travis2002

Travis2002
  • Members
  • 24 posts

Posted 21 August 2003 - 19:12

I have migrated a complete General Release install from InstallShield 5.5 to InstallShield 7.0 Developer.
Now, when I try to compile it, I am getting these errors:

D:\Install\Sunrise Decision Support Manager\Script Files\MRsetup.rul(2509) : error C8121: ')' : incomplete parameter list
D:\Install\Sunrise Decision Support Manager\Script Files\MFsetup.rul(2631) : error C8121: ')' : incomplete parameter list

-It compiled correctly in 5.5, why would 7.0 have issues?
-What can I do to fix these?


When I double click the error, it highlights this function:

function MFRunTSIExes()
STRING t_strDSOPath;
begin
t_strDSOPath = INSTALLDIR ^ "\\TIV\\";

It looks correct to me.
Any help would be greatly appreciated.
.::Travis Mixon::.

Stefan Krueger

Stefan Krueger

    InstallSite.org

  • Administrators
  • 13,269 posts

Posted 21 August 2003 - 22:05

For me this compiles without problem.
Please show me your prototype.

The problem may also be with the line above function MFRunTSIExes()

Travis2002

Travis2002
  • Members
  • 24 posts

Posted 22 August 2003 - 16:25

The Setup.rul you asked for

Stefan, can you see if this causes errors on yours?

Thanks!
blink.gif
.::Travis Mixon::.

Stefan Krueger

Stefan Krueger

    InstallSite.org

  • Administrators
  • 13,269 posts

Posted 26 August 2003 - 14:03

Here are your problems:

prototype MFRunTSIExes(
NUMBER, //@ install type
);

There's an additional , in the prototype (remove the part in red)

function MFRunTSIExes(nInstallType)

According to the prototype the function accepts a NUMBER argument (add the part in green)

Travis2002

Travis2002
  • Members
  • 24 posts

Posted 27 August 2003 - 21:03

Hey Stefan, I just want to say thanks, that worked.

You're the best!
.::Travis Mixon::.