Problems with crystal reports on windows 10 (client)

0

Friends, I have problems trying to generate a report in windows10. The application is in vb.net 2013 (winforms), I am using the dlls of cristal reports 13.0.3500.X.

In this application there are some reports that run packages in the database ( oracle ), and others that receive a dataset with the information.

The application was developed on a computer with windows7 of 64 bits, in this computer all reports work correctly, but when installing the application on a computer (client) with windows10, the reports that run packages on the base do not work data.

The error that appears is:

  

" Error in the test file {QWEQWEDASD ..}. rpt: the data base information could not be loaded ".

Do you know what is due? I appreciate your help. Greetings

    
asked by carlos guajardo 06.06.2018 в 01:05
source

1 answer

0

in your app.config, in the end it replaces:

<startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=4.6.1"/>
</startup>

Because of this:

<startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=4.0"/>
</startup>
    
answered by 06.06.2018 в 02:29