Crystal Reports 8.5 to NET

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Dragos Hilbert

    Crystal Reports 8.5 to NET

    I have some reports in Crystal 8.5 (400 reports) and I want to port on
    ..NET (we are porting our applications from VB6 to C#). What it is the
    best solution to port this reports? Did you have some link from where
    to learn more?
    We don't want to recreate this reports.

    We have: VB6 + CR 8.5 - we use CRViewer (first we create a
    ADODB.Recordset and fill with data and then we pass this recordset to
    Report and we want to do the same thing with NET or an apropiate
    solution)
    EX:
    Private mReport As CRAXDDRT.Report
    Set mReport = mApplication.Op enReport(<path> , 1)
    mReport.Databas e.Tables(1).Set DataSource rsT, 3
    ............... ............... ............

    Thank you
  • James

    #2
    Re: Crystal Reports 8.5 to NET

    The 8.5 reports will work just fine as they are. You can either keep them
    separate as 8.5 and simply load and run them in the viewer, or, if you want
    to integrate them into the .Net Visual Studio dev environment they will be
    auto-upgraded to v10. You do not need to do anything other than load them
    into the IDE.

    JIM


    "Dragos Hilbert" <dragosh@rafo.r o> wrote in message
    news:qdtt215bgs kkiq170a7l80pd0 cdsrv75bo@4ax.c om...[color=blue]
    >I have some reports in Crystal 8.5 (400 reports) and I want to port on
    > .NET (we are porting our applications from VB6 to C#). What it is the
    > best solution to port this reports? Did you have some link from where
    > to learn more?
    > We don't want to recreate this reports.
    >
    > We have: VB6 + CR 8.5 - we use CRViewer (first we create a
    > ADODB.Recordset and fill with data and then we pass this recordset to
    > Report and we want to do the same thing with NET or an apropiate
    > solution)
    > EX:
    > Private mReport As CRAXDDRT.Report
    > Set mReport = mApplication.Op enReport(<path> , 1)
    > mReport.Databas e.Tables(1).Set DataSource rsT, 3
    > ............... ............... ...........
    >
    > Thank you[/color]


    Comment

    Working...