Results 1 to 4 of 4

Thread: Problem mit VRW3.0 und DF18.1

Hybrid View

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

    Default Problem mit VRW3.0 und DF18.1

    Wir haben unsere Projekt mit VRW3.0 Reports auf DF18.1 migriert. Der Projekt kann nicht mehr kompiliert werden. Fehlermeldungen in dem Bild.
    Wenn ich ein neuen Report im Testprojekt erstelle bekomme ich gleiche Fehlermeldung.

    Was können wir machen? Ich möchte noch nicht alle Reports auf DR 4.0 umstellen.


    Click image for larger version. 

Name:	VRW3.0.JPG 
Views:	225 
Size:	166.5 KB 
ID:	9079


    Grüße,
    Natalia

  2. #2
    Join Date
    Feb 2009
    Location
    Hengelo, Netherlands
    Posts
    10,869

    Default Re: Problem mit VRW3.0 und DF18.1

    Natalia,

    We haven't created and tested an integration library for DataFlex 18.1 to be used with DataFlex Reports 3.0. There is a 18.1 library for version 4.0 available.

    The problem you are running into is that the error number (4425) which was defined as DFERR_VISUAL_REPORT_WRITER is (per 18.0) renamed to DFERR_DATAFLEX_REPORTS. This means you need to define the old error constant yourself. The 18.0 library that comes with v3 defines the error number as follows:

    Code:
    #IF (!@ = 180)
        Define DFERR_VISUAL_REPORT_WRITER for 4425
    #ENDIF
    You would need to add:
    Code:
    #IF (!@ = 181)
        Define DFERR_VISUAL_REPORT_WRITER for 4425
    #ENDIF
    But better is to move on to version 4.0.2 and use the library we've made for version 18.1 as we have no plans to bring out a 18.1 library for v3.0 and the wizards in the library won't work unless you have installed the version of DataFlex that can run the wizards in the library workspace.
    Regards,
    Data Access Worldwide
    Vincent Oorsprong

  3. #3

    Default Re: Problem mit VRW3.0 und DF18.1

    Danke,
    so hat es funktioniert.

    Die Reports auf 4.0 umzustellen ist wieder sehr kompliziert. Gibt es ein Tool dazu? Ist es möglich in einem Projekt alte und neue Reports gleichzeitig benutzen?

    Grüße
    Natalia

  4. #4
    Join Date
    Feb 2009
    Location
    Hengelo, Netherlands
    Posts
    10,869

    Default Re: Problem mit VRW3.0 und DF18.1

    Natalia,

    For migration of the report files to the latest version use the maintenance tool for DataFlex Reports.

    We don't support the use of two (or more) versions of the DataFlex Reports print engine inside one client but I think that with some tricks and tweaks you should be able to do this.
    Regards,
    Data Access Worldwide
    Vincent Oorsprong

Posting Permissions

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