Results 1 to 7 of 7

Thread: Cannot open and compress service file - error

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1

    Default Cannot open and compress service file - error

    I've created a simple install and am getting the following error. I've
    looked everywhere and everything looks fine.

    Shouldn't the file with the problem be shown?

    Details:

    ------ Build started: Project: cptrackerenterprise.sb5, Configuration:
    Release Win32 ------

    SetupBuilder (tm) Script Compiler and Linker
    Copyright (C) 1997-2005 Lindersoft
    SetupScript (tm) Installation Script Language
    Copyright (C) 2003-2005 Lindersoft
    Developer Edition
    Version 5.2.1321

    Deleting intermediate files and output files for project
    'cptrackerenterprise.sb5', configuration 'Debug|Win32'.
    Loading compiler variables...
    Compiling...
    cptrackerenterprise.sb5
    Script version detected: 5.1.1267
    Recursive compile(0:29): Common Definitions.sbi
    Continue(0:1:30): C:\Documents and Settings\Greg\My Documents\My
    SetupBuilder 5 Projects\cptrackerenterprise.sb5
    Script(s) processed
    Generating code...
    Finished generating code
    Building executable...
    Linking kernel...
    Code size: 97,375 bytes
    Generating and optimizing [1033] string resources [2]...
    Linking [1033] language resource(s)...
    Code size: 5,427 bytes
    Linking dialog side bitmap...
    Code size: 2,761 bytes
    Linking dialog top bitmap...
    Code size: 484 bytes
    Including 1 service file(s)...
    Compressing service file:
    cptrackerenterprise.sb5(154): error GEN1017: Compression library error
    code: -200. Cannot open and compress file


    ---------------------------------------
    Done ---------------------------------------

    cptrackerenterprise.sb5 - 1 error(s), 0 warning(s)

    Compilation Time: 0.8 sec.

    ------------------------------- Compilation
    finished -------------------------------

    Thanks,
    Greg Berthume
    Berthume Software
    www.berthume.com
    cpTracker Lite, Pro & Enterprise (SQL)
    Clarion Source Code Options Available!

  2. #2

    Default Re: Cannot open and compress service file - error

    Hi Greg,

    >I've created a simple install and am getting the following error. I've
    >looked everywhere and everything looks fine.

    You didn't accidentally include the SB5 project in the file list?
    That causes an error, but I don't remember if it's that one or
    something else.

    Best regards,

    Arnór Baldvinsson
    Icetips Software
    San Antonio, Texas, USA
    www.icetips.com


    Subscribe to information from Icetips.com:
    http://www.icetips.com/subscribe.php

  3. #3

    Default Re: Cannot open and compress service file - error

    I don't see any files except the ones I added.

  4. #4

    Default Re: Cannot open and compress service file - error

    I also have tried turning on debug but it tells me it can't find the debug
    file.

    I am running the latest SB.

  5. #5

    Default Re: Cannot open and compress service file - error

    Greg,

    What happens if you comment out line (154)? What file is it?

    Andrea

    Sales and Accounting, Lindersoft
    www.setupbuilder.com
    1.954.252.3910

    "point. click. ship" - that's SetupBuilder 5

  6. #6

    Default Re: Cannot open and compress service file - error

    There is no line 154. Goes to line 153.

    !
    ////////////////////////////////////////////////////////////////////////////////
    ! // SetupBuilder 5 Installation Script
    ! //
    ! // Description: SetupBuilder installation script
    ! //
    ! // Version: N/A
    ! //
    ! // Comments: N/A
    ! //
    ! // Revision History
    ! // ================
    ! // 11-30-2005 - Installation script created @ 11:58:29 PM [SB5.2.1320]
    ! //
    !
    ////////////////////////////////////////////////////////////////////////////////

    #pragma MINVER = 5.1.1292

    [ Support Files ]
    ! --- Required temporary installation files ---


    [ Billboards ]
    ! --- Billboard files ---

    #include billboard file NewBillboard1 =

    [ Initialize Setup ]
    ! --- Define commonly used constants ---
    #include script "Common Definitions.sbi"

    ! --- Define standard installer variables ---
    Set Variable %WINVER% to {WINVER}
    Set Variable %CURLNG% to {CURLNG}
    Set Variable %SRCDRV% to {SRCDRV}
    Set Variable %CURDIR% to {CURDIR}
    Set Variable %TMPDIR% to {TMPDIR}
    Set Variable %WINDIR% to {WINDIR}
    Set Variable %SYSDIR% to {SYSDIR}
    Set Variable %PROGRAMFILESDIR% to {PROGRAMFILESDIR}
    Set Variable %COMMONFILESDIR% to {COMMONFILESDIR}
    Set Variable %PRIVILEGES% to {PRIVILEGES}

    ! If destination system is running ME/98/95, the built-in variable
    {SYS32DIR} automatically points to {SYSDIR}
    Set Variable %SYS32DIR% to {SYS32DIR}

    ! If destination system does not have a writable Windows\System folder,
    system files will be written to the Windows\ folder
    If %SYS32DIR% Folder is not writable Then
    Set Variable %SYS32DIR% to %WINDIR%
    End

    ! Important: Initialize default install folder and program group variables
    Set Variable %_SB_INSTALLDIR% to [INSTALLDIR]
    Set Variable %_SB_PROGRAMGROUP% to [PRODUCTNAME]

    ! %SB_BACKUPDIR% holds the path that all backup files will be copied to when
    overwritten
    Set Variable %_SB_BACKUPDIR% to %_SB_INSTALLDIR%\BACKUP


    [ Features ]
    ! If features are enabled, %SB_FEATURESID% holds all selections separated by
    a vertical bar "|"
    ! Warning: It is not recommended to manually modify the %SB_FEATURESID%
    variable!


    [ Setup Types ]
    ! If setup types are enabled, %SB_SETUPTYPEID% holds the selected type
    ! Warning: It is not recommended to manually modify the %SB_SETUPTYPEID%
    variable!

    :efine Setup Type "Typical"
    :efine Setup Type "Minimal"
    :efine Setup Type "Custom"

    [ User Interface ]
    ! Wizard dialog definition(s)
    Define Wizard Dialog "#1" (Welcome)
    Define Wizard Dialog "#2" (License Agreement)
    Define Wizard Dialog "#3" (Select Install Folder)
    Define Wizard Dialog "#4" (Ready to Install)

    ! The Wizard Loop displays the dialog screens that the user sees in the
    installation
    Loop Wizard
    Wizard Auto Break
    End

    ! Display progress dialog
    Display Setup Progress Dialog

    ! Create installation .log
    Create Installation Log "[UNINSTALL_LOG]"

    [ Create Folders ]


    [ Install Files ]

    Install File "C:\Clarion6\3rdParty\bin\autonet.exe" to
    %_SB_INSTALLDIR%\autonet.exe (Always Install) [Uninstall]
    Install File "C:\Clarion6\BIN\C60TPSX.DLL" to %_SB_INSTALLDIR%\C60TPSX.DLL
    (Always Install) [Uninstall]
    Install File "C:\Clarion6\BIN\C60ASCX.DLL" to %_SB_INSTALLDIR%\C60ASCX.DLL
    (Always Install) [Uninstall]
    Install File "C:\Clarion6\BIN\C60BASX.DLL" to %_SB_INSTALLDIR%\C60BASX.DLL
    (Always Install) [Uninstall]
    Install File "C:\Clarion6\BIN\C60DOSX.DLL" to %_SB_INSTALLDIR%\C60DOSX.DLL
    (Always Install) [Uninstall]
    Install File "C:\Clarion6\BIN\C60DB3X.DLL" to %_SB_INSTALLDIR%\C60DB3X.DLL
    (Always Install) [Uninstall]
    Install File "C:\Clarion6\BIN\C60DB4X.DLL" to %_SB_INSTALLDIR%\C60DB4X.DLL
    (Always Install) [Uninstall]
    Install File "C:\Clarion6\BIN\C60MSSX.DLL" to %_SB_INSTALLDIR%\C60MSSX.DLL
    (Always Install) [Uninstall]
    Install File "C:\Clarion6\BIN\C60OLEX.DLL" to %_SB_INSTALLDIR%\C60OLEX.DLL
    (Always Install) [Uninstall]
    Install File "C:\Clarion6\BIN\C60RUNX.DLL" to %_SB_INSTALLDIR%\C60RUNX.DLL
    (Always Install) [Uninstall]
    Install File "C:\Clarion6\3rdParty\bin\c6fm3x.dll" to
    %_SB_INSTALLDIR%\c6fm3x.dll (Always Install) [Uninstall]
    Install File "C:\cpTrackerEnt\Release\setup.rtf" to
    %_SB_INSTALLDIR%\setup.rtf (Always Install) [Uninstall]
    Install File "C:\cpTrackerEnt\Release\cpt.ini" to %_SB_INSTALLDIR%\cpt.ini
    (Always Install) [Uninstall]
    Install File "C:\cpTrackerEnt\Release\cptedatadct.pdf" to
    %_SB_INSTALLDIR%\cptedatadct.pdf (Always Install) [Uninstall]
    Install File "C:\cpTrackerEnt\Release\cptrack.ini" to
    %_SB_INSTALLDIR%\cptrack.ini (Always Install) [Uninstall]
    Install File "C:\cpTrackerEnt\Release\cptracker.chm" to
    %_SB_INSTALLDIR%\cptracker.chm (Always Install) [Uninstall]
    Install File "C:\Clarion6\3rdParty\bin\S6MSSX.DLL" to
    %_SB_INSTALLDIR%\S6MSSX.DLL (Always Install) [Uninstall]
    Install File "C:\Clarion6\BIN\NTSQW6C62.DLL" to
    %_SB_INSTALLDIR%\NTSQW6C62.DLL (Always Install) [Uninstall]
    Install File "C:\Clarion6\BIN\NTSRW6C62.DLL" to
    %_SB_INSTALLDIR%\NTSRW6C62.DLL (Always Install) [Uninstall]
    Install File "C:\Clarion6\BIN\NTSSW6C62.DLL" to
    %_SB_INSTALLDIR%\NTSSW6C62.DLL (Always Install) [Uninstall]
    Install File "C:\Clarion6\BIN\vuFT3.dll" to %_SB_INSTALLDIR%\vuFT3.dll
    (Always Install) [Uninstall]
    Install File "C:\cpTrackerEntC6\exe32\cptrackent.exe" to
    %_SB_INSTALLDIR%\cptrackent.exe (Always Install) [Uninstall]
    Install File "C:\Clarion6\BIN\FRBUSER.HLP" to %_SB_INSTALLDIR%\FRBUSER.HLP
    (Always Install) [Uninstall]
    Install File "C:\cpTrackerEntC6\images\cpticon.ico" to
    %_SB_INSTALLDIR%\cpticon.ico (Always Install) [Uninstall]

    [ Create Shortcuts ]

    ::Create Program Folder "cpTracker Enterprise" to "Programs\cpTracker
    Enterprise" (Always Install)
    ::Create Shortcut "cpTracker Enterprise" to "Programs\cpTracker
    Enterprise\cpTracker Enterprise" (Always Install)
    ::Create Shortcut "Uninstall cpTracker Enterprise" to "Programs\cpTracker
    Enterprise\Uninstall cpTracker Enterprise" (Always Install)
    ::Create Shortcut "cpTracker Enterprise Help" to "Programs\cpTracker
    Enterprise\cpTracker Enterprise Help" (Always Install)

    [ Edit Registry ]


    [ Edit INI Files ]


    [ Modify System ]


    [ Execute Programs ]


    [ Finalize Setup ]
    ! Register all queued OCX/DLL/EXE/TLB files
    Register all pending OCXs/DLLs/EXEs/TLBs

    ! Register all queued Clarion Template files
    Register queued Clarion Templates

    [ Final User Interface ]
    ! Final wizard dialog definition(s)
    Define Wizard Dialog "#1" (Finish)

    ! The Wizard Loop displays the dialog screens that the user sees in the
    installation
    Loop Wizard
    Wizard Auto Break
    End


    Greg Berthume
    Berthume Software
    www.berthume.com
    cpTracker Lite, Pro & Enterprise (SQL)
    Clarion Source Code Options Available!

  7. #7

    Default Re: Cannot open and compress service file - error

    Greg,

    Could you please send the script to support (at) lindersoft (dot) com?

    Thanks,
    Friedrich

    --
    Friedrich Linder
    CEO, Lindersoft
    www.lindersoft.com
    +1.954.252.3910

    "point. click. ship" - that's SetupBuilder 5

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Error gen1017
    By NewsArchive in forum SetupBuilder - NNTP
    Replies: 10
    Last Post: 03-10-2006, 08:38 AM

Posting Permissions

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