|
-
Feb 7th, 2009, 04:16 AM
#1
Thread Starter
Addicted Member
[RESOLVED] .dll is not registered correctly
Hi all, I just finished creating my first full project and I am really proud it turned out great! It runs fine on the laptop I created it on, although I am having a little trouble when I try to install and run it on another machine. The installation process goes fine, but when I try to run the program I get an error that says " gif89a.dll in not registered correctly". I used the Inno program to bulid the setup file because I wanted it to be able to create a desktop icon. Does anyone have any ideas on how I can resolve this? I think this is a little over my head but I am willing to do some research and give it a try. Could this be as simple as including this file on the disk and adding some kind of code to the Inno builder? I am not familier with the code used in Inno but any ideas would be welcome.
Thank you all in advance.
Scott
-
Feb 7th, 2009, 05:17 AM
#2
Re: .dll is not registered correctly
hai scott,
try with this flags
Code:
Flags: restartreplace uninsneveruninstall sharedfile regserver
-
Feb 7th, 2009, 10:03 AM
#3
Re: .dll is not registered correctly
Thread moved to Application Deployment forum, which is where questions about installing/distributing your software belong
-
Feb 7th, 2009, 12:46 PM
#4
Thread Starter
Addicted Member
Re: .dll is not registered correctly
thank you, I will try this. Would I replace the,
Code:
Flags: nowait postinstall skipifsilent
with yours?
-
Feb 7th, 2009, 02:11 PM
#5
Re: .dll is not registered correctly
hai scottlafoy,
OOopss,
it seems the dll your distrubuting is just a 3rd party dll right? what i gave is for a vb runtime dll.
in one of my programs, i have two 3rd pary dll's and i am distributing them with this code. for exampel
Code:
Source: "D:\underdevelopment\xxxxx\distribusion\xxxx.dll"; DestDir: "{sys}";
these dlls i distribute no need to registe. just installing them to system folder. i have no any issues.
-
Feb 7th, 2009, 07:00 PM
#6
Thread Starter
Addicted Member
Re: .dll is not registered correctly
this seems to have worked perfect. The program works on every computer I try it on, even vista! I also included and autorun.ini on the cd. Thank you very much for your help!
-
Feb 8th, 2009, 05:55 AM
#7
Re: .dll is not registered correctly
 Originally Posted by scottlafoy
this seems to have worked perfect. The program works on every computer I try it on, even vista! I also included and autorun.ini on the cd. Thank you very much for your help!
#2 or 5# which helped
-
Feb 9th, 2009, 01:46 PM
#8
Thread Starter
Addicted Member
Re: [RESOLVED] .dll is not registered correctly
The second one,
Code:
Source: "D:\underdevelopment\xxxxx\distribusion\xxxx.dll"; DestDir: "{sys}";
putting the .dll file into the system directory is just what it needed.
Thanks again!
-
Feb 9th, 2009, 11:53 PM
#9
Re: [RESOLVED] .dll is not registered correctly
Cool
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
|