IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

SAP Crystal Reports Discussion :

Comment installer notre .exe sans installer CR ? [Trucs & Astuces]


Sujet :

SAP Crystal Reports

  1. #1
    Membre habitué
    Inscrit en
    Février 2004
    Messages
    279
    Détails du profil
    Informations forums :
    Inscription : Février 2004
    Messages : 279
    Points : 164
    Points
    164
    Par défaut Comment installer notre .exe sans installer CR ?
    Bonjour,
    Je cherche a déployer mon application sur plusieurs poste mais je ne veux pas installer cr.
    Comment faire pour que cela marche?

    J'utilise CR 10

    Merci d'avance

    Speed

    [mise en Post-it par sur_uix]

  2. #2
    Membre émérite
    Avatar de L.nico
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Novembre 2003
    Messages
    1 143
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Bas Rhin (Alsace)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Novembre 2003
    Messages : 1 143
    Points : 2 679
    Points
    2 679
    Par défaut
    Tu dois faire une install en y intégrant toutes les dll nécessaires à la bonne execution de crystal Report.
    Mais je n'ai pas encore de client en Crystal 10 donc je ne peux pas les énumerer.
    Mais je pense que la liste doit pourvoir se trouver sur le site de Business Objects ...
    Bonne recherche.
    A lire avant de poster
    Si vous avez obtenu la réponse à votre question alors cliquez sur le bouton

  3. #3
    Membre à l'essai
    Profil pro
    Inscrit en
    Juin 2004
    Messages
    10
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2004
    Messages : 10
    Points : 12
    Points
    12
    Par défaut
    Je suis aussi à la recherche de ces fameux fichiers.
    Je sais qu'il faut crpe32.dll mais je crois que ce n'est pas suffisant.

  4. #4
    Membre habitué
    Inscrit en
    Février 2004
    Messages
    279
    Détails du profil
    Informations forums :
    Inscription : Février 2004
    Messages : 279
    Points : 164
    Points
    164
    Par défaut rep
    Bonjour,
    voila ce que j'ai trouvé sur le site, je suis en train de le tester :

    http://support.businessobjects.com/communityCS/TechnicalPapers/rdc10_deployment.pdf.asp

    Si quelqu'un y arrive, qui fasse un signe

    Merci

    Speed

  5. #5
    Membre confirmé
    Avatar de sur_uix
    Profil pro
    Inscrit en
    Mai 2002
    Messages
    379
    Détails du profil
    Informations personnelles :
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2002
    Messages : 379
    Points : 550
    Points
    550
    Par défaut
    Moi j'ai fait un petit batch qui me collecte toutes les DLL utile :


    create crystal install.bat
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
     
    Echo off
     
    SET CR9_WINDIR=C:\WINNT
    SET CR9_PFILES=C:\Program Files
    SET CR9_PCS=C:\INSTALL\CRYSTAL_9
     
    ECHO Create directory
    md "%CR9_PCS%\TO_COMMONFILES" 
    md "%CR9_PCS%\TO_COMMONFILES\2Register"
    md "%CR9_PCS%\TO_SYSTEM"
     
     
     
     
    eCHO COPY FILES
    copy "%CR9_WINDIR%\system32\MSVCRT.dll" "%CR9_PCS%\TO_SYSTEM" 
    copy "%CR9_WINDIR%\system32\riched20.dll" "%CR9_PCS%\TO_SYSTEM" 
    copy "%CR9_WINDIR%\system32\usp10.dll" "%CR9_PCS%\TO_SYSTEM" 
    copy "%CR9_WINDIR%\system32\dbghelp.dll" "%CR9_PCS%\TO_SYSTEM"
     
    copy "%CR9_PFILES%\Crystal Decisions\Report Designer Component\craxdrt9.dll" "%CR9_PCS%\TO_COMMONFILES\2Register"
    copy "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\crystalreportviewers\ActiveXViewer\crviewer9.dll" "%CR9_PCS%\TO_COMMONFILES\2Register"
    copy "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\crtowords_en.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\ufmanager.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\sscsdk80.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\CRAnalyzer.dll" "%CR9_PCS%\TO_COMMONFILES\2Register"
    copy "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\sscdlg.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\sscrc.dll" "%CR9_PCS%\TO_COMMONFILES"
     
    copy "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\Implode.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\crqe.dll" "%CR9_PCS%\TO_COMMONFILES\2Register"
    copy "%CR9_PFILES%\common files\Crystal Decisions\2.0\bin\querybuilder.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\common files\Crystal Decisions\2.0\bin\exlate32.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\common files\Crystal Decisions\2.0\bin\crheapalloc.dll" "%CR9_PCS%\TO_COMMONFILES"
     
    echo Export dlls
    copy "%CR9_PFILES%\common files\Crystal Decisions\2.0\bin\crxf_rtf.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\common files\Crystal Decisions\2.0\bin\crxf_wordw.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\common files\Crystal Decisions\2.0\bin\crxf_xls.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\common files\Crystal Decisions\2.0\bin\crxf_pdf.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\common files\Crystal Decisions\2.0\bin\crxf_html.dll" "%CR9_PCS%\TO_COMMONFILES"
     
    copy "%CR9_PFILES%\common files\Crystal Decisions\2.0\bin\u2fcr.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\common files\Crystal Decisions\2.0\bin\u2fsepv.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\common files\Crystal Decisions\2.0\bin\u2ftext.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\common files\Crystal Decisions\2.0\bin\u2fxml.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\common files\Crystal Decisions\2.0\bin\u2ddisk.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\common files\Crystal Decisions\2.0\bin\u2dpost.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\common files\Crystal Decisions\2.0\bin\u2dapp.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\common files\Crystal Decisions\2.0\bin\u2dmapi.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\common files\Crystal Decisions\2.0\bin\u2frdef.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\common files\Crystal Decisions\2.0\bin\u2frec.dll" "%CR9_PCS%\TO_COMMONFILES"
     
    copy "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\ExportModeller.dll" "%CR9_PCS%\TO_COMMONFILES\2Register"
    copy "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\crtslv.dll" "%CR9_PCS%\TO_COMMONFILES\2Register"
    copy "%CR9_PFILES%\common files\Crystal Decisions\2.0\bin\gdiplus.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\common files\Crystal Decisions\2.0\bin\ReportRenderer.dll" "%CR9_PCS%\TO_COMMONFILES\2Register"
    copy "%CR9_PFILES%\common files\Crystal Decisions\2.0\bin\pageObjectModel.dll" "%CR9_PCS%\TO_COMMONFILES\2Register"
    copy "%CR9_PFILES%\common files\Crystal Decisions\2.0\bin\webReporting.dll" "%CR9_PCS%\TO_COMMONFILES\2Register"
     
     
    echo Keycode dll
    copy "%CR9_PFILES%\common files\Crystal Decisions\2.0\bin\keycode.dll" "%CR9_PCS%\TO_COMMONFILES\2Register"
     
    echo Deploy registry file
    copy "%CR9_PFILES%\common files\Crystal Decisions\2.0\bin\CR9DEPLOY.REG" "%CR9_PCS%"
     
    echo ufmanager.dll
    copy "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\u2l2000.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\u2lcom.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\u2ldts.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\u2lexch.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\u2lfinra.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\u252000.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\u25dts.dll" "%CR9_PCS%\TO_COMMONFILES"
    copy "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\u25samp1.dll" "%CR9_PCS%\TO_COMMONFILES"
     
    copy "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\crdb_oracle.dll" "%CR9_PCS%\TO_COMMONFILES"
     
     
    PAUSE
    Et ensuite j'ai un autre batch chez le client pour installer le Runtime.
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
     
    Echo off
     
    SET CR9_WINDIR=C:\WINNT
    SET CR9_PFILES=C:\Program Files
    SET CR9_PCS=C:\INSTALL\CRYSTAL_9
     
    ECHO Create directory
    md "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\"
     
     
     
     
    eCHO COPY FILES
    copy "%CR9_PCS%\TO_COMMONFILES\*.*" "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\*.*"
    copy "%CR9_PCS%\TO_COMMONFILES\2Register\*.*" "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\*.*"
     
     
    echo COPY FILES - Dependency Files for Craxdrt9.dll
    copy "%CR9_PCS%\TO_SYSTEM\MSVCRT.dll" "%CR9_WINDIR%\system32" 
    copy "%CR9_PCS%\TO_SYSTEM\riched20.dll" "%CR9_WINDIR%\system32" 
    copy "%CR9_PCS%\TO_SYSTEM\usp10.dll" "%CR9_WINDIR%\system32"  
    copy "%CR9_PCS%\TO_SYSTEM\dbghelp.dll" "%CR9_WINDIR%\system32"
     
    Echo Runtime engine
    regsvr32.exe /S "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\Crqe.dll"
    regsvr32.exe /S "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\craxdrt9.dll"
    regsvr32.exe /S "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\crviewer9.dll"
    regsvr32.exe /S "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\keycode.dll"
     
    echo Export formats
    regsvr32.exe /S "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\ReportRenderer.dll" 
    regsvr32.exe /S "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\pageObjectModel.dll" 
    regsvr32.exe /S "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\webReporting.dll" 
    regsvr32.exe /S "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\ExportModeller.dll" 
    regsvr32.exe /S "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\crtslv.dll" 
     
    echo Charts
    regsvr32.exe /S "%CR9_PFILES%\Common Files\Crystal Decisions\2.0\bin\CRAnalyzer.dll"
     
    REGEDIT "%CR9_PCS%\CR9Deploy.reg"
     
     
     
    PAUSE
    Avec ça à chaque fois que je passe un hotfix sur mon poste je peux générer un nouveau runtime facilement.


    PS. Je sais je ne prend pas tous les fichiers d'accès aux bases de données !!

  6. #6
    Membre émérite
    Avatar de L.nico
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Novembre 2003
    Messages
    1 143
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Bas Rhin (Alsace)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Novembre 2003
    Messages : 1 143
    Points : 2 679
    Points
    2 679
    Par défaut
    Je trouve que B.O. se fout un peu des utilisateurs VB6.
    En effet il propose des MSM complet que l'on peut adjoindre à une install de type MSI (.NET)
    Par contre pour les install de type Setup.exe qui requiert des fichiers de dépendances qui soient corrects,
    ils ne font rien.
    En fait, dans le document cité par Speed034, B.O nous demande
    de modifier les fichiers .DEP qui ne sont pas bons ...
    Pourquoi ne pas proposer des fichiers .DEP correct sur le site
    en fonction de l'install que l'on veut faire ??
    Ou une install Client indépendante avec tous les fichiers requis ??
    Non, faut qu'on plonge dans le "DLL Hell" ....
    Je trouve ça vraiment pas cool ...
    A lire avant de poster
    Si vous avez obtenu la réponse à votre question alors cliquez sur le bouton

  7. #7
    Membre confirmé
    Avatar de sur_uix
    Profil pro
    Inscrit en
    Mai 2002
    Messages
    379
    Détails du profil
    Informations personnelles :
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2002
    Messages : 379
    Points : 550
    Points
    550
    Par défaut
    C'est justement pour cela que j'ai pris du temps à décortiquer toutes les DLL du runtime RDC, et puis j'ai fais ces deux batch.

    Et depuis 8)

  8. #8
    Membre émérite
    Avatar de L.nico
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Novembre 2003
    Messages
    1 143
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Bas Rhin (Alsace)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Novembre 2003
    Messages : 1 143
    Points : 2 679
    Points
    2 679
    Par défaut
    Citation Envoyé par sur_uix
    C'est justement pour cela que j'ai pris du temps à décortiquer toutes les DLL du runtime RDC, et puis j'ai fais ces deux batch.

    Et depuis 8)
    T'as pas le même batch pour Crystal 10 ?? :
    A lire avant de poster
    Si vous avez obtenu la réponse à votre question alors cliquez sur le bouton

  9. #9
    Membre confirmé
    Avatar de sur_uix
    Profil pro
    Inscrit en
    Mai 2002
    Messages
    379
    Détails du profil
    Informations personnelles :
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2002
    Messages : 379
    Points : 550
    Points
    550
    Par défaut
    Citation Envoyé par L.nico

    T'as pas le même batch pour Crystal 10 ?? :
    Non mais cela ne doit pas etre bien sorcié de l'adapter :

    C:\Program Files\Common Files\Crystal Decisions\2.0\Bin
    devient
    C:\Program Files\Common Files\Crystal Decisions\2.5\bin
    Et la CRAXDRT.dll n'est plus dans
    C:\Program Files\Crystal Decisions\Report Designer Component
    mais dans
    C:\Program Files\Common Files\Crystal Decisions\2.5\bin
    Encore un truc que j'ai oublié enregistrer crdeploy.reg
    qui est dans
    C:\Program Files\Common Files\Crystal Decisions\XX\bin

  10. #10
    Membre habitué
    Inscrit en
    Février 2004
    Messages
    279
    Détails du profil
    Informations forums :
    Inscription : Février 2004
    Messages : 279
    Points : 164
    Points
    164
    Par défaut
    re - bonjour

    on fait le programe ou?
    on se sert de kel logiciel pour faire ce script?

    Merci

    ++speed

  11. #11
    Membre confirmé
    Avatar de sur_uix
    Profil pro
    Inscrit en
    Mai 2002
    Messages
    379
    Détails du profil
    Informations personnelles :
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2002
    Messages : 379
    Points : 550
    Points
    550
    Par défaut
    Citation Envoyé par speed034
    re - bonjour

    on fait le programe ou?
    on se sert de quel logiciel pour faire ce script?

    Merci

    ++speed
    HOOOOOOOOOOOO quelqu'un qui n'a pas connu DOS
    Le meilleur outil de DEV pour faire des fichiers batch c'est : NOTEPAD

  12. #12
    Membre habitué
    Inscrit en
    Février 2004
    Messages
    279
    Détails du profil
    Informations forums :
    Inscription : Février 2004
    Messages : 279
    Points : 164
    Points
    164
    Par défaut
    loool non désolé je connais pas le Dos, j'en ai des vagues souvenirs mais c tro loin (puisque j'été petite)

    Donc on prend ce que SUR_Uix a marqué, on l'adapte a notre CR10 , on necrit tout cela dans notepad, on l'enregistre en .bat et c bon?


    merci
    ++speed

  13. #13
    Membre confirmé
    Avatar de sur_uix
    Profil pro
    Inscrit en
    Mai 2002
    Messages
    379
    Détails du profil
    Informations personnelles :
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2002
    Messages : 379
    Points : 550
    Points
    550
    Par défaut
    Exactement, dans adapter n'oublie pas de prendre la DLL que tu as besoin pour ton accès basse de donnée.

    Au fait tous les détails des DLL c'est par ici
    As per the definition of "Runtime Softwaer" under the USE, DEPLOYMENT, AND
    DISTRIBUTION oF RUNTIME SOFTWARE section of the 10 Developer and
    Advanced Developer LIcense Agreement, the following files constitute "Runtime Software".

    **.NET MERGE MODULES**
    Crystal10.NET.WebServiceReporting.msm
    Crystal10.NET.EmbeddedReproting.msm
    Crystal10.NET.RemoteReporting.msm
    Crystal10.NET.EmbeddedReportingMapping.msm
    NetServer.msi

    **UTILITIES**
    crheapalloc.dll Heap Allocator
    crtslv.dll Used by ExportModeller.dll to process enapsulated page files
    filedialog.dll Common File Dialog
    implode.dll Compression library
    keycode.dll Keycode Module
    exlate32.dll Encapsulated Page Format (EPF)->HTML Translator
    r3exlen.dll Encapsulated Page Format (EPF)->HTML Translator Module
    xerces-c_2_1_0.dll XML Parsing Library

    **MISC (??) **
    Emfgen.dll EMF Generator
    JVMmanager.dll JVM Manager
    sscdlg.dll Public C callable Amigo Dialog Components
    vle.dll VLE Module

    **REPORT APPLICATION SERVER**
    dtsagent.dll Report Application Server Design-Time Server Agent
    localcon.dll Report Application Server
    odbccon.dll Report Application Server ODBC Connection Provider
    RegistryWrapper.dll Report Application Server Registry Wrapper
    saxserialize.dll EROM XML Serialization

    **PRODUCT FEATURES**
    c2d6dten.dll Data Definition Tool
    Crddt32.dll Data Definition Tool
    CRSmartTag.dll Smart Tag Module
    cachemanager.dll Cache Manager
    CRAnalyzer.dll Analyzer Module
    crtemplate.dll Template Engine
    crtowords_en.dll ToWords
    cubedefmodel.dll Cube Definition Module
    DataDefModel.dll Data Definition Module
    crystalwizard.dll Standard Wizard Component
    EnterpriseRepositoryAdapter.dll Repository Adapter Module
    RepositoryExplorer.dll Repository Explorer
    favorites.dll Favorites Module
    querybuilder.dll Query Builder
    ReportRenderer.dll Report Renderer
    sacommlayer.dll Analysis Communication Layer
    sacommoncontrols.dll Analysis Communication Controls
    sacorbaadapter.dll Analysis CORBA adapter
    saxmlserialize.dll Analysis XML Serialization
    sscsdk80.dll Charting Engine
    webReporting.dll Web Reporting Module

    **REPORT OBJECT MODEL**
    CEReportSource.dll Enterprise ReportSource plug-in
    clientdoc.dll Client Document
    commonobjectmodel.dll Commmon Object Model
    objectfactory.dll Object Factory Library
    pageObjectModel.dll Page Object Module
    requestmodel.dll Request Model
    RptControllers.dll Report Controllers
    rptdefmodel.dll Report Definition Model
    undoManager.dll Client Document Undo Manager

    **REPORT ENGINE**
    crpe32.dll Interface for C developers
    crqe.dll Crystal Query Engine

    **DESIGNER**
    craxddrt.dll ActiveX Designer Design and Runtime Support
    craxdrt.dll 32-bit Only COM Object Model, Dual Interface, Apartment Model
    craxdui.dll ActiveX Designer
    CRDesignerCtrl.dll Embeddable Designer Control
    32-bit only COM object model, dual interface, apartment model, not thread safe

    **VIEWER**
    crviewer.dll Crystal Report Viewer
    PrintControl.dll Print Control
    sviewhlp.dll Report Viewer Helper
    swebrs.dll Web Report Broker

    **DATA ACCESS**
    Cdo32.dll Data Object
    crdb_ado.dll Database driver for Microsoft ActiveX Data Objects
    crdb_adoplus.dll Database driver for Microsoft ADO.NET
    crdb_cdo.dll Database driver for Crystal Data Object
    crdb_com.dll Database driver for COM data provider
    crdb_dao.dll Database driver for Microsoft Data Access Objects
    crdb_dataset.dll Database driver for DataSet provider
    crdb_dictionary.dll Database driver for dictionary files resource
    crdb_fielddef.dll Database driver for Field Definitions
    crdb_filesystem.dll Database driver for File System data.
    p3sd2en.dll Database driver for DB2 Server
    crdb_JavaBeans.dll Database driver for Java data
    crdb_mscrm.dll Database driver for Microsoft CRM (1)
    crmscrmbridge.dll Database driver for Microsoft CRM (2)
    crmscrmconnector.dll Database driver for Microsoft CRM (3)
    crdb_odbc.dll Database driver for ODBC
    crdb_olap.dll Database driver for OLAP data resource
    crdb_oracle.dll Database driver for Oracle
    crdb_p2bact3.dll Database driver for Act!3.0 (1)
    p2bact3.dll Database driver for Act!3.0 (2)
    p2iract3.dll Database driver for Act!3.0 (3)
    p3da3en.dll Database driver for Act!3.0 (4)
    p3ra3en.dll Database driver for ACT!3.0 (5)
    crdb_p2bbde.dll Database driver for IDAPI (1)
    p3dbeen.dll Database driver for IDAPI (2)
    crdb_p2bbtrv.dll Database driver for BTrieve (1)
    p2bbtrv.dll Database driver for BTrieve (2)
    p2ctbtrv.dll Database driver for BTrieve (3)
    p3dbten.dll Database driver for BTrieve (4)
    p3tbten.dll Database driver for BTrieve (5)
    crdb_p2bxbse.dll Database driver for XBase (1)
    p2ixbse.dll Database driver for XBase (2)
    p3dxben.dll Database driver for xBase (3)
    p3ixben.dll Database driver for xBase (4)
    crdb_p2sdb2.dll Database driver for dBase II
    crdb_p2sevta.dll Database driver for Microsoft NT event logs (1)
    crdb_p2sevtc.dll Database driver for Microsoft NT event logs (2)
    p3seven.dll Database driver for Microsoft NT event logs (3)
    crdb_p2sexsrm.dll Database driver for Microsoft Exchange Server Admin (1)
    p3sxsen.dll Database driver for Microsoft Exchange Server Admin (2)
    crdb_p2sifmx.dll Database driver for Informix (1)
    p3sifen.dll Database driver for Informix (2)
    crdb_p2smapi.dll Database driver for Microsoft Exchange Folders and Address Book (1)
    p3smpen.dll Database driver for Microsoft Exchange Folders and Address Book (2)
    crdb_p2smsiis.dll Database driver for Microsoft IIS Log Files (1)
    p3sisen.dll Database driver for Microsoft IIS Log Files (2)
    crdb_p2snote.dll Database driver for Lotus Notes Domino
    p3slnen.dll Database driver for Lotus Notes Domino
    crdb_p2soutlk.dll Database driver for Microsoft Outlook (1)
    p2soutlk.dll Database driver for Microsoft Outlook (2)
    p3souenu.dll Database driver for Microsoft Outlook (3)
    crdb_p2srepl.dll Database driver for Microsoft Exchange Public Folder Replica (1)
    p3sacen.dll Database driver for Microsoft Exchange Public Folder Replica (2)
    p3srpen.dll Database driver for Microsoft Exchange Public Folder Replica (3)
    crdb_p2ssyb10.dll Database driver for Sybase (1)
    p3ssten.dll Database driver for Sybase (2)
    crdb_p2strack.dll Database driver for Microsoft Exchange Server Message Tracking Logs (1)
    p3stken.dll Database driver for Microsoft Exchange Server Message Tracking Logs (2)
    crdb_p2swblg.dll Database driver for Web Log Files (1)
    p3swlen.dll Database driver for Web Log Files (2)
    crdb_query.dll Database driver for Query Data

    **EXPORT DESTINATIONS**
    crxf_html.dll HTML Export Destination (32-bit)
    crxf_pdf.dll PDF Export Destination (32-bit)
    crxf_rtf.dll RTF Export Destination (32-bit)
    crxf_wordw.dll WORD Export Destination (32-bit)
    crxf_xls.dll EXCEL Export Destination (32-bit)
    u2dapp.dll App Export Destination (16-bit)
    x3dapen.dll App Export Destination (32-bit)
    u2fcr.dll RPT Export Destination (16-bit)
    x3fcren.dll RPT Export Destination (32-bit)
    u2frdef.dll RPT DEF Export Destination (16-bit)
    x3frden.dll RPT DEF Export Destination (32-bit)
    u2ddisk.dll Disk Export Destination (16-bit)
    x3ddken.dll Disk Export Destination (32-bit)
    u2dmapii.dll MAPI Export Destination (16-bit)
    x3dmpen.dll MAPI Export Destination (32-bit)
    u2dnotes.dll LOTUS Export Designation (16-bit)
    x3dnten.dll LOTUS Export Destination (32-bit)
    u2dpost.dll UXD Export Destination (16-bit)
    x3dpten.dll UXD Export Destination (32-bit)
    u2dvim.dll VIM Export Destination (16-bit)
    x3dvmen.dll VIM Export Destination (32-bit)
    u2fcompress.dll Compress Export Destination (16-bit)
    x3fcpen.dll Compress Export Destination (32-bit)
    u2fodbc.dll ODBC Export Destination (16-bit)
    x3foden.dll ODBC Export Destination (32-bit)
    u2frec.dll Records Export Destination (16-bit)
    x3frcen.dll Records Export Destination (32-bit)
    u2fsepv.dll CSV Export Destination (16-bit)
    x3fsven.dll CSV Export Destination (32-bit)
    u2ftext.dll TXT Export Destination (16-bit)
    x3ftxen.dll TXT Export Destination (32-bit)
    x3fxmen.dll XML Export Destination (32-bit)

    **DATE AND TIME CONVERSION USER FUNCTION LIBRARIES (UFLS)**
    u2l2000.dll 16-bit Conversion of 20th Century Dates to 21st Century Dates
    u3l20en.dll 32-bit Conversion of 20th Century Dates to 21st Century Dates
    u3520en.dll 32-bit Conversion of 20th Century Dates to 21st Century Dates
    u3520en.dll 32-bit Conversion of 20th Century Dates to 21st Century Dates
    u2ldts.dll 16-bit Data Time String
    u25dts.dll 16-bit Date Time String
    u3ldten.dll 32-bit Date Time String
    u35dten.dll Date Time String

    **FINANCIAL USER FUNCTION LIBRARIES (UFLS)**
    u2lexch.dll 16-bit Currency Exchange
    u3lxcen.dll 32-bit Currency Exchange
    u2lfinra.dll 16-bit Financial Ratios
    u3lfren.dll 32-bit Financial Ratios

    **MISC USER FUNCTION LIBRARIES (UFLS)**
    u2lcom.dll 16-bit COM communication
    u25samp1.dll 16-bit Sample UFL
    u35s1en.dll 32-bit Sample UFL
    ufmanager.dll Manager for loading UFLs

    **Crystal Reports for VisualStudio.Net Components**
    CRVsPackageLib.dll
    CrystalDecisions.CrystalReports.Design.dll
    CrystalDecisions.CrystalReports.Engine.dll
    CrystalDecisions.CrystalReports.TemplateEngine.dll
    CrystalDecisions.Enterprise.Admin.Audit.dll
    CrystalDecisions.Enterprise.Admin.CachePageServer.dll
    CrystalDecisions.Enterprise.Admin.Cms.dll
    CrystalDecisions.Enterprise.Admin.EventServer.dll
    CrystalDecisions.Enterprise.Admin.FileServer.dll
    CrystalDecisions.Enterprise.Admin.JobServer.dll
    CrystalDecisions.Enterprise.Admin.ReportAppServer.dll
    CrystalDecisions.Enterprise.Admin.Wcs.dll
    CrystalDecisions.Enterprise.Auth.secEnterprise.dll
    CrystalDecisions.Enterprise.Auth.secLdap.dll
    CrystalDecisions.Enterprise.Auth.secWinAD.dll
    CrystalDecisions.Enterprise.Auth.secWindowsNT.dll
    CrystalDecisions.Enterprise.Desktop.Calendar.dll
    CrystalDecisions.Enterprise.Desktop.Connection.dll
    CrystalDecisions.Enterprise.Desktop.Event.dll
    CrystalDecisions.Enterprise.Desktop.Excel.dll
    CrystalDecisions.Enterprise.Desktop.FavoritesFolder.dll
    CrystalDecisions.Enterprise.Desktop.Folder.dll
    CrystalDecisions.Enterprise.Desktop.Hyperlink.dll
    CrystalDecisions.Enterprise.Desktop.LicenseKey.dll
    CrystalDecisions.Enterprise.Desktop.ObjectPackage.dll
    CrystalDecisions.Enterprise.Desktop.Pdf.dll
    CrystalDecisions.Enterprise.Desktop.Powerpoint.dll
    CrystalDecisions.Enterprise.Desktop.Powerpoint.dll
    CrystalDecisions.Enterprise.Desktop.Report.dll
    CrystalDecisions.Enterprise.Desktop.Rtf.dll
    CrystalDecisions.Enterprise.Desktop.Server.dll
    CrystalDecisions.Enterprise.Desktop.ServerGroup.dll
    CrystalDecisions.Enterprise.Desktop.Shortcut.dll
    CrystalDecisions.Enterprise.Desktop.Txt.dll
    CrystalDecisions.Enterprise.Desktop.User.dll
    CrystalDecisions.Enterprise.Desktop.UserGroup.dll
    CrystalDecisions.Enterprise.Desktop.Word.dll
    CrystalDecisions.Enterprise.Dest.DiskUnmanaged.dll
    CrystalDecisions.Enterprise.Dest.Ftp.dll
    CrystalDecisions.Enterprise.Dest.Smtp.dll
    CrystalDecisions.Enterprise.dll
    CrystalDecisions.Enterprise.Framework.dll
    CrystalDecisions.Enterprise.InfoStore.dll
    CrystalDecisions.Enterprise.Integration.dll
    CrystalDecisions.Enterprise.PluginManager.dll
    CrystalDecisions.Enterprise.Strings.dll
    CrystalDecisions.Enterprise.Utils.UtcConverter.dll
    CrystalDecisions.Enterprise.Viewing.ReportSource.dll
    CrystalDecisions.Enterprise.Web.dll
    CrystalDecisions.Enterprise.Web.dll
    CrystalDecisions.ReportAppServer.ClientDoc.dll
    CrystalDecisions.ReportAppServer.CommLayer.dll
    CrystalDecisions.ReportAppServer.CommonControls.dll
    CrystalDecisions.ReportAppServer.CommonObjectModel.dll
    CrystalDecisions.ReportAppServer.Controllers.dll
    CrystalDecisions.ReportAppServer.CubeDefModel.dll
    CrystalDecisions.ReportAppServer.DataDefModel.dll
    CrystalDecisions.ReportAppServer.DataSetConversion.dll
    CrystalDecisions.ReportAppServer.ObjectFactory.dll
    CrystalDecisions.ReportAppServer.ReportDefModel.dll
    CrystalDecisions.ReportAppServer.XmlSerialize.dll
    CrystalDecisions.ReportSource.dll
    CrystalDecisions.Shared.dll
    CrystalDecisions.Web.dll
    CrystalDecisions.Windows.Forms.dll

    **Crystal Reports for VisualStudio.Net Resource Files**
    CrystalDecisions.CrystalReports.Engine.resources.DLL
    CrystalDecisions.ReportSource.resources.dll
    CrystalDecisions.Shared.resources.dll
    CrystalDecisions.VSDesigner.Mobile.resources.dll
    CrystalDecisions.VSDesigner.resources.dll
    CrystalDecisions.Web.Mobile.MobileViewerSys.resources.dll
    CrystalDecisions.Web.resources.dll
    CrystalDecisions.Web.resources.dll

    RESOURCE (See non-localized version of these files for description, this list includes the english locale)
    For the files below, replace _en with:
    _de for German
    _fr for French
    _jp for Japanese
    _it for Italian
    _es for Spanish
    _chs for Simplified Chinese
    _ko for Korean

    cachemanager_res_en.dll
    Cdo32en.dll
    clientdoc_res_en.dll
    CRAnalyzer_res_en.dll
    craxddrt_res_en.dll
    craxdrt_res_en.dll
    craxdui_res_en.dll
    crdb_adoplus_res_en.dll
    crdb_ado_res_en.dll
    crdb_cdo_res_en.dll
    crdb_com_res_en.dll
    crdb_dao_res_en.dll
    crdb_dataset_res_en.dll
    crdb_dictionary_res_en.dll
    crdb_fielddef_res_en.dll
    crdb_filesystem_res_en.dll
    crdb_JavaBeans_res_en.dll
    crdb_odbc_res_en.dll
    crdb_olap_res_en.dll
    crdb_oracle_res_en.dll
    crdb_p2s_res_en.dll
    crdb_pc_res_en.dll
    crdb_query_res_en.dll
    crdesignerctrl_res_en.dll
    crmscrmstatus_res_en.dll
    crpe32_res_en.dll
    crqe_res_en.dll
    crtemplate_res_en.dll
    crwz97_res_en.dll
    crxf_html_res_en.dll
    crxf_pdf_res_en.dll
    crxf_rtf_res_en.dll
    crxf_wordw_res_en.dll
    crxf_xls_res_en.dll
    cubedefmodel_res_en.dll
    datadefmodel_res_en.dll
    dtsagentd_res_en.dll
    EnterpriseRepositoryAdaptor_res_en.dll
    filedialog_res_en.dll
    formula_res_en.dll
    LicenseManager_res_en.dll
    localcon_res_en.dll
    odbccon_res_en.dll
    querybuilder_res_en.dll
    regwiz_res_en.dll
    requestmodel_res_en.dll
    rptcontrollers_res_en.dll
    rptdefmodel_res_en.dll
    sacommlayer_res_en.dll
    sacommoncontrols_res_en.dll
    sacorbaadapter_res_en.dll
    saxmlserialize_res_en.dll
    sscdlg_res_en.dll
    sscsdk80_res_en.dll
    u2fcompress_res_en.dll
    vle_res_en.dll

    JAVA
    In addition to the list of Java "Runtime Software" located below, please see java_runtime.txt, installed with the Crystal
    Reports Java Reporting Componnent.
    rasapp.jar Report Application Server
    rascore.jar
    Serialization.jar
    URIUtil.jar
    ReportViewer.jar Java Zero-Client Report Viewer
    ReportViewerBean.jar Java Thick-Client Report Viewer



  14. #14
    Membre émérite
    Avatar de L.nico
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Novembre 2003
    Messages
    1 143
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Bas Rhin (Alsace)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Novembre 2003
    Messages : 1 143
    Points : 2 679
    Points
    2 679
    Par défaut
    Merci beaucoup Sur_uix pour tes batchs et conseils avisés pour le déploiement de Crystal 10. C'est super sympa ... Je n'ai pas de poste en rab pour pouvoir le tester de suite, mais je ne doute pas une seconde de son fonctionnement.
    MERCI BEAUCOUP.


    PS : Ca va nous faire gagner pas mal de temps ....
    A lire avant de poster
    Si vous avez obtenu la réponse à votre question alors cliquez sur le bouton

  15. #15
    Membre confirmé
    Avatar de sur_uix
    Profil pro
    Inscrit en
    Mai 2002
    Messages
    379
    Détails du profil
    Informations personnelles :
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2002
    Messages : 379
    Points : 550
    Points
    550
    Par défaut
    Encore un p'tit truc.
    Sur les ordi où vous aurez utilisé cette méthode, Ne jamais installer les hotfix de bo, ça fout la m...

    Mais, passez le(s) Hotfix(s) sur votre machine repasser le 1er petit BATCH et vous aurez un runtime tout beau tout patchééééééé

  16. #16
    Membre confirmé
    Avatar de sur_uix
    Profil pro
    Inscrit en
    Mai 2002
    Messages
    379
    Détails du profil
    Informations personnelles :
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2002
    Messages : 379
    Points : 550
    Points
    550
    Par défaut
    Héooooooooo Monsieur le modérateur YouHHouou une p'tit demande,
    Est-ce qu'il ne serrai pas possible de mettre ce message en Post-it, car cela doit faire la 2e fois que je répond à ce genre de problème.
    Merci.

  17. #17
    Membre habitué
    Inscrit en
    Février 2004
    Messages
    279
    Détails du profil
    Informations forums :
    Inscription : Février 2004
    Messages : 279
    Points : 164
    Points
    164
    Par défaut
    excusez moi je v pe etre vous paraitre toute nouvelle, mais en fait, je suis nouvelle loool (je n'ai pas encore des années de dev deriere moi)

    c koi un hotfix de BO?

    si on peut mexpliquer ce que le post precédent veut dire

    Merci d'avance

    ++speed

  18. #18
    Membre émérite
    Avatar de L.nico
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Novembre 2003
    Messages
    1 143
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Bas Rhin (Alsace)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Novembre 2003
    Messages : 1 143
    Points : 2 679
    Points
    2 679
    Par défaut
    Un hotFix est un correctif fournis par l'editeur ... pour soi disant corriger des bugs (En général c'est vrai) ...
    C'est comme un patch ou un service pack.
    A lire avant de poster
    Si vous avez obtenu la réponse à votre question alors cliquez sur le bouton

  19. #19
    Membre habitué
    Inscrit en
    Février 2004
    Messages
    279
    Détails du profil
    Informations forums :
    Inscription : Février 2004
    Messages : 279
    Points : 164
    Points
    164
    Par défaut
    oki merci

    speed

  20. #20
    Membre confirmé
    Avatar de sur_uix
    Profil pro
    Inscrit en
    Mai 2002
    Messages
    379
    Détails du profil
    Informations personnelles :
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2002
    Messages : 379
    Points : 550
    Points
    550
    Par défaut
    Faut expliquer quoi, hotfix ou BO.

    HotFix : c'est un petit programme (Tout mignion) qui vas remplacer certain module de Crystal report par une nouvelle version afin de corriger d'éventuelle BUG. Les HotFix ne sont pas garanti à 100% car ils n'ont pas subit tous les tests.
    Il y a les MontlyHotFix (Edité tous les mois) et le weekly hotfix (toutes les semaines).
    après il y a aussi le ServicePack, c'est la compil (Comme un Best-OF )de MonthlyHotFix avec toutes les testes effectué.

    Voilà ....

Discussions similaires

  1. [CR XI] installer notre .exe sans installer CR(visual studio 2005 & crystal 11.0.0.1282)
    Par staika dans le forum SAP Crystal Reports
    Réponses: 0
    Dernier message: 24/12/2009, 15h11
  2. Réponses: 3
    Dernier message: 26/08/2009, 11h01
  3. [Xandros] [EEEPC] comment lire des .EXE sans windows ?
    Par jean jacques39 dans le forum Autres
    Réponses: 7
    Dernier message: 22/04/2008, 10h13
  4. Réponses: 5
    Dernier message: 10/05/2006, 09h10
  5. Réponses: 1
    Dernier message: 16/01/2006, 20h15

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo