Report Design
 Crystal Reports Forum : Crystal Reports .NET 2003 : Report Design
Message Icon Topic: paging and report max limit does not work togethe Post Reply Post New Topic
Author Message
virappon
Newbie
Newbie


Joined: 29 Jul 2009
Location: Bangladesh
Online Status: Offline
Posts: 1
Quote virappon Replybullet Topic: paging and report max limit does not work togethe
    Posted: 29 Jul 2009 at 7:35pm
I am using crystal report with VS2005.

At first I was getting an error that "The maximum report processing jobs limit configured by your system administrator has been reached".

The solution given in a forum was to dispose report document on page unload

override protected void OnUnload(EventArgs e)
    {
       
        this._rdFinancialStatement.Close();
       this._rdFinancialStatement.Dispose();

    }

the second problem was in the same report with report viewer. I could not get to the next page by pressing next button of report viewer.

The solution given in forum was to keep report document in session.

 if (Session["InRept"] != null)
        {
            this.crvFinStatement.ReportSource = (ReportDocument)Session["InRept"];
            this.crvFinStatement.DataBind();
        }

but if I dispose the report next time when I load form session report gives object reference not found problem.

Both should work...

Please let me know if there is a solution.

Virappon
IP IP Logged
Post Reply Post New Topic
Printable version Printable version

Forum Jump
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot delete your posts in this forum
You cannot edit your posts in this forum
You cannot create polls in this forum
You cannot vote in polls in this forum



This page was generated in 0.031 seconds.