Application with Crystal Reports does not find Database on the client

1

I made a small application that uses Crystal Reports to generate reports.

I made the .EXE of it with InstalShield LE, installed it in my PC and it turned beauty. However, when I install on another machine, the application does not find the Database set. The login screen appears, but with the Database Name blank, while in my PC it goes straight through.

The line I used to set the login was:

crVendas.SetDatabaseLogon("sa", "senha", "Server", "teste");

I even tried to install on the server itself, but the same problem occurs. Can you help me? Thanks!

    
asked by anonymous 05.01.2015 / 17:52

1 answer

0

Well, just to finish the case, I ended up solving it very simply.

I made the connection to the database directly through Crystal Reports Database Fields and in the logon line I put only the access data:

crVendas.SetDatabaseLogon("sa", "senha");
    
09.01.2015 / 11:24