Crystal Reports Login Screen

C

chris.dannemiller

The Crystal Reports Database login screen is coming up on some random
clients we cannot determine the source of the issue. No database login
is required whatsoever, we are simply using a XML packet for the data.

data is a input string that is the XML encoded version of the data.

try
{
DataSet dtsData=new DataSet();

StringReader sr = new StringReader ( data );
dtsData.ReadXml(sr);

BoughtLeads bl = new BoughtLeads();
bl.SetDataSource (dtsData );

crystalReportViewer1.ReportSource = bl;
}
catch ( Exception e )
{
MessageBox.Show ( e.Message );
}

Visual C# 2003

- Christopher Dannemiller
 
I

Ignacio Machin \( .NET/ C# MVP \)

Hi,

I have seen this to happen, but only when the reported was created directly
from a DB, if you selected "other datasources" from the designer you should
get this error (I haven;t seen it at least)

Did you created it from a XMl file?
 
C

chris.dannemiller

Actually its just a XML structor that I deserelized into a string from
the application using the tools in C# to deserlize a class.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top