|
-
Jan 22nd, 2003, 09:30 PM
#1
Thread Starter
Fanatic Member
Inno Setup Script....
I've got problem with inno script. I got the script from below link :
http://www.vbforums.com/showthread.php?s=&threadid=214370&highlight=inno+setup
my problem is :
Problem No. 1
Setup can't registered a DLL / OCX. While setup try to register a DLL / OCX, (e.g : registering titext6.ocx), will returns error something like below :
Component 'titext6.ocx' or one of its dependencies not correctly registered : a file missing or invalid.
and will give me 3 options... they are : Abort, Retry, or Ignore
Problem No. 2
If I choose ignore from problem no. 1, setup will continue to register other DLL / OCX files. But, setup won't register problem no. 1 .... And when I try to run the project executable, and try to open form(s) which contains / use titext6.ocx, the project will returns error that is almost the same error with problem no. 1, and my project will be closed, because the error.
Here is piece of my script :
Code:
Source: "titext6.oca"; DestDir: "{sys}"; Components: all library; CopyMode: onlyifdoesntexist; Flags: uninsneveruninstall
Source: "titext6.dep"; DestDir: "{sys}"; Components: all library; CopyMode: onlyifdoesntexist; Flags: uninsneveruninstall
Source: "titext6.ocx"; DestDir: "{sys}"; Components: all library; CopyMode: onlyifdoesntexist; Flags: uninsneveruninstall regserver
Any help ?
Thx a lot....
___________
*** Wille ***
-
Jan 22nd, 2003, 10:57 PM
#2
Thread Starter
Fanatic Member
cmon...
any help ?
I need this badly enough....
*** Wille ***
-
Jan 23rd, 2003, 11:26 PM
#3
Thread Starter
Fanatic Member
hello there ?
noone knows about Inno Setup Script ?
Help dunk ;p
I really need help on this....
___________
*** Wille ***
-
Jan 24th, 2003, 03:04 AM
#4
Hyperactive Member
Inno Setup have their own message board for problems regarding it. If you haven't already, may I suggest you try there too.
-
Jan 24th, 2003, 09:21 PM
#5
Thread Starter
Fanatic Member
-
Jan 25th, 2003, 01:27 AM
#6
Wen Lie,
You never did mention what Version OS or Inno Setup you are using or other such pertinent info. I can see from your script you may be using an older version of Inno Setup. First try updating to the latest version to see if the problem goes away.
The CopyMode: onlyifdoesntexist statement has been changed to Flags: onlyifdoesntexist in the current version
Get the latest version from:
http://www.innosetup.com
If the .ocx is your file... make sure you have all the dependent file in your script. If you are not sure as to what they are, you can use PDW to tell you what is missing.
-
Feb 10th, 2003, 01:50 AM
#7
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|