|
-
Apr 5th, 2002, 08:06 AM
#1
Thread Starter
Hyperactive Member
Using InnoSetup
Hi Guys,
I created SetUp Package using InnoSetup and installed the same.....but the application gets hanged and stop responding but the same works with PDW.......I think some required system files which are automtically included thru PDW are missing when u create thru InnoSetUp........so how to include those files.....
!!!NobodyisPerfect......IamNOBODY!!!
How's your wife and my kids?.....
Never argue with an idiot. They drag you down to their level then beat you with experience!
Child says : Mummy mummy, can i play with grandpa ?
Mum says : NO, you have already dug him up twice.
Galahtec The VB Forum
-
Apr 5th, 2002, 08:16 AM
#2
Bouncy Member
correct, with innosetup you have to include the files yourself. that way you have control of what goes into the setup package.
you can use the package& deployment wizard to make a dependancy file which will list all of the files required by your app (well most of the time) there may be others you will need to add though, like if your using ADO you might wanna include MDAC and DCOM98 etc
-
Apr 5th, 2002, 08:21 AM
#3
Frenzied Member
here an example of copying VB files!
Code:
; begin VB system files
Source: "c:\winnt\system32\Stdole2.tlb"; DestDir: "{sys}"; CopyMode: alwaysskipifsameorolder; Flags: restartreplace uninsneveruninstall sharedfile regtypelib
Source: "c:\winnt\system32\msvbvm60.dll"; DestDir: "{sys}"; CopyMode: alwaysskipifsameorolder; Flags: restartreplace uninsneveruninstall sharedfile regserver
Source: "c:\winnt\system32\oleaut32.dll"; DestDir: "{sys}"; CopyMode: alwaysskipifsameorolder; Flags: restartreplace uninsneveruninstall sharedfile regserver
Source: "c:\winnt\system32\olepro32.dll"; DestDir: "{sys}"; CopyMode: alwaysskipifsameorolder; Flags: restartreplace uninsneveruninstall sharedfile regserver
Source: "c:\winnt\system32\asycfilt.dll"; DestDir: "{sys}"; CopyMode: alwaysskipifsameorolder; Flags: restartreplace uninsneveruninstall sharedfile
Source: "c:\winnt\system32\comcat.dll"; DestDir: "{sys}"; CopyMode: alwaysskipifsameorolder; Flags: restartreplace uninsneveruninstall sharedfile regserver
Source: "c:\winnt\system32\urlmon.dll"; DestDir: "{sys}"; CopyMode: alwaysskipifsameorolder; Flags: restartreplace uninsneveruninstall sharedfile regserver
Source: "c:\winnt\system32\winmm.dll"; DestDir: "{sys}"; CopyMode: alwaysskipifsameorolder; Flags: restartreplace uninsneveruninstall sharedfile
Source: "c:\winnt\system32\wininet.dll"; DestDir: "{sys}"; CopyMode: alwaysskipifsameorolder; Flags: restartreplace uninsneveruninstall sharedfile
; end VB system files
;begin ocx files
Source: "c:\winnt\system32\Comdlg32.ocx"; DestDir: "{sys}"; CopyMode: alwaysskipifsameorolder; Flags: restartreplace sharedfile regserver
;end ocx files
-
May 6th, 2002, 10:39 AM
#4
New Member
parameters for dcom
Darre1,
Can you tell me what the parameters for the DCOM95, 98 mean? I've searched everywhere for this and I couldn't find it.
Thanks in advance.
-
May 7th, 2002, 03:41 AM
#5
Bouncy Member
Re: parameters for dcom
Originally posted by timcam01
Darre1,
Can you tell me what the parameters for the DCOM95, 98 mean? I've searched everywhere for this and I couldn't find it.
Thanks in advance.
sorry mate, i dont know eiterh, i got them from an example
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
|