Crystal Reports and asp.net (2003) help... 
Author Message
 Crystal Reports and asp.net (2003) help...

I have created a vs.net solution just to learn how to get a simple report
working on a aspx page. Wow... looks easy.. but the errors are hard to track
down.

http://www.*-*-*.com/ .. is terrible.... everything is a link
to a page to download a useless pdf... how are you supposed to find anything
in that mess???

Can someone please show me a resource for doing a simple report in an
asp.net webform? I just want to use an ole db connection to sql server. I
have tried multiple logins, but they all fail. What's the trick?

My current error...
Exception Details: CrystalDecisions.CrystalReports.Engine.LogOnException:
Logon failed.

I have read these..

http://www.*-*-*.com/
http://www.*-*-*.com/ %3ben-us%3b319264

Thanks,
Roger



Mon, 07 Nov 2005 00:40:31 GMT  
 Crystal Reports and asp.net (2003) help...
I have also done this...

http://support.crystaldecisions.com/library/kbase/articles/c2011144.asp

How can you test this?


Quote:
> I have created a vs.net solution just to learn how to get a simple report
> working on a aspx page. Wow... looks easy.. but the errors are hard to
track
> down.

> http://support.crystaldecisions.com .. is terrible.... everything is a
link
> to a page to download a useless pdf... how are you supposed to find
anything
> in that mess???

> Can someone please show me a resource for doing a simple report in an
> asp.net webform? I just want to use an ole db connection to sql server. I
> have tried multiple logins, but they all fail. What's the trick?

> My current error...
> Exception Details: CrystalDecisions.CrystalReports.Engine.LogOnException:
> Logon failed.

> I have read these..

> http://msdn.microsoft.com/msdnmag/issues/02/05/Crystal/
> http://support.microsoft.com/default.aspx?scid=kb%3ben-us%3b319264

> Thanks,
> Roger



Mon, 07 Nov 2005 00:47:41 GMT  
 Crystal Reports and asp.net (2003) help...
Hi Roger!
I agree their support page is lacking in all aspects! Put
the code in your page_load event . Please note that your
need to change 'CrystalReport1' to the name of your
report.

Dim crpt = New CrystalReport1()
Dim mytable As
CrystalDecisions.CrystalReports.Engine.Table
Dim mylogin As CrystalDecisions.Shared.TableLogOnInfo
        For Each mytable In crpt.database.tables
            mylogin = mytable.LogOnInfo
            mylogin.ConnectionInfo.Password = "pass"
            mylogin.ConnectionInfo.UserID = "who"
            mylogin.ConnectionInfo.DatabaseName = "db"
            mylogin.ConnectionInfo.ServerName = "server"
            mytable.ApplyLogOnInfo(mylogin)
        Next
        CrystalReportViewer1.ReportSource = crpt

Kind Regards
Jorge Cavalheiro

Quote:
>-----Original Message-----
>I have also done this...

>http://support.crystaldecisions.com/library/kbase/article
s/c2011144.asp

>How can you test this?



>> I have created a vs.net solution just to learn how to
get a simple report
>> working on a aspx page. Wow... looks easy.. but the
errors are hard to
>track
>> down.

>> http://support.crystaldecisions.com .. is terrible....
everything is a
>link
>> to a page to download a useless pdf... how are you
supposed to find
>anything
>> in that mess???

>> Can someone please show me a resource for doing a
simple report in an
>> asp.net webform? I just want to use an ole db

connection to sql server. I
Quote:
>> have tried multiple logins, but they all fail. What's
the trick?

>> My current error...
>> Exception Details:

CrystalDecisions.CrystalReports.Engine.LogOnException:

- Show quoted text -

Quote:
>> Logon failed.

>> I have read these..

>> http://msdn.microsoft.com/msdnmag/issues/02/05/Crystal/
>> http://support.microsoft.com/default.aspx?scid=kb%3ben-
us%3b319264

>> Thanks,
>> Roger

>.



Mon, 07 Nov 2005 15:47:30 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. Visual Studio .NET 2003 and Crystal Report Deploy

2. VB .Net 2003 Standard or VS .Net 2003 Pro for Smart Devices

3. Help:Migrating reports from VB.Beta to VB.Net 2003

4. Web Reports (ASP.NET and Crystal Reports for .Net)

5. Visual Studio .Net 2003 Final Beta, simple socket code breaks between 2002 and 2003

6. VS.NET 2003 - DateTime field only showing up as Date in Crystal

7. deployment problems with .Net 2003 and Crystal

8. Crystal 8 vs version in visual studio.net 2003

9. Crystal Reports from ASP.NET without compiling VB.NET on SQL/ADO changes

10. crystal.net report from asp.net created (temporary) table

11. problem with crystal report for .net in asp.net

12. VB.NET 2003 and Code Reports

 

 
Powered by phpBB® Forum Software