Results 1 to 5 of 5

Thread: Using InnoSetup

  1. #1

    Thread Starter
    Hyperactive Member Dinz's Avatar
    Join Date
    Jan 2002
    Posts
    359

    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

  2. #2
    Bouncy Member darre1's Avatar
    Join Date
    May 2001
    Location
    Peterborough, UK
    Posts
    3,828
    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
    Confucious say, "Man standing naked in biscuit barrel not necessarily ****ing crackers."

    Don't forget to format your code in your posts

  3. #3
    Frenzied Member sebs's Avatar
    Join Date
    Sep 2000
    Location
    Aylmer,Qc
    Posts
    1,606
    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

  4. #4
    New Member
    Join Date
    Feb 2002
    Location
    New York
    Posts
    8

    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.

  5. #5
    Bouncy Member darre1's Avatar
    Join Date
    May 2001
    Location
    Peterborough, UK
    Posts
    3,828

    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
    Confucious say, "Man standing naked in biscuit barrel not necessarily ****ing crackers."

    Don't forget to format your code in your posts

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width