how to make a single setup file

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mrkcse
    New Member
    • Dec 2007
    • 7

    how to make a single setup file

    I have developed on exe application using vb6.0 which includes crystal reports and I have used business object's crystal reports version XI while developing. Reports are working fine while running the application.


    whenver i make it as a setup file and run from exe of this application it is giving run time error as

    Runtime error : 2147206460 (80043ac4)
    Invalid directory
    details : error

    help me
  • debasisdas
    Recognized Expert Expert
    • Dec 2006
    • 8119

    #2
    Try to include all the required DLL and OCX files in the setup an d in the proper path.

    Comment

    • mrkcse
      New Member
      • Dec 2007
      • 7

      #3
      CRYSTL32.OCX is missing in support folder of my setup so i included it after making setup i have placed in support folder.
      and even crpe32.dll and cpeaut32.dll i have placed in in support folder and after installing in programfiles folder also .then also it is giving the same error.

      Comment

      • lotus18
        Contributor
        • Nov 2007
        • 865

        #4
        Originally posted by mrkcse
        CRYSTL32.OCX is missing in support folder of my setup so i included it after making setup i have placed in support folder.
        and even crpe32.dll and cpeaut32.dll i have placed in in support folder and after installing in programfiles folder also .then also it is giving the same error.
        Hi mrkcse

        I suggest that copy the .dll and .ocx source files you want then store it in the same directory when using the setup utility tools.

        For example if they are located in 'C:\Windows\' directory
        By using the iss script:

        Sample Code

        Code:
              [Files]
              Source: "C:\WINDOWS\CRYSTL32.OCX  "; DestDir: "{win}"
              Source: "C:\WINDOWS\crpe32.dll "; DestDir: "{win}"
              Source: "C:\WINDOWS\cpeaut32.dll "; DestDir: "{win}"
        Rey Sean
        Last edited by lotus18; Dec 7 '07, 02:26 PM. Reason: code tag added

        Comment

        Working...