|
-
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 ***
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
|