I have an asp.net (2.0) page with a crystal report viewer. I use the following code in the page_load() method
if (!Page.IsPostBack)
{
Session["REP"] = null;
}
ReportDocument report;
if (Session["REP"] == null)
{
report = new ReportDocument();
report.Load(Server.MapPath("reports\\rptListItems....
Hello all.
I got a little issue here. I got an ASP.net Page that display a Report.
I need to display that report in a new page.
I'm thinking in passing the DataSet as a Session Variable but I don't Know if it is a good Idea. What do you think?
...
Hi All,
I want to create a crystal report application in visual stuio 2008, which will be able to create reports by the user. the user will choose the filed he wants and the report will view them.
I also want to know if there is an option to create "smart fileds" which wil calculate for example an input - date and will view the date+ 3...
I'm trying to obtain the Oracle package name used for a Crystal report data source using .NET code.
I have obtained the procedure name, but for some reason I can not find the package name.
Dim rpt as new ReportDocument
rpt.Load(filename)
Dim procedureName As String = rpt.Database.Tables.Item(0).Location
Dim DataSou...
You read that correctly, CR v1.0.38. We have an archaic piece of coldfusion software that uses reports created in CR v1.0.38. Some of these reports need minor adjustments, so I open it using Visual Studio make the adjustments. When I go to save it I'm prompted with a warning about only being able to save it as a newer version. When I...
I have a serious issue with crystal reports.
when run in my development environment or debugged on my local machine it works fine.
but when the application is published to a windows server 2003 it has the dreaded "The report you requested requires further information" Message
I have had no luck trying to get rid of this message
Anybo...
AoA, Hello
i am writing an application for financial solution. in short i ve to get out print of report that is generated. Crystal report is what i want to use....
my problem is that i just want to preview report and allow to insert any change that user want to make. Or easily we can say want to allow edit entries.
is there any metho...
In Crystal Report Designer in VS 2008, I can go to the crystal reports menu, report, Selection Formula, Group and enter a filter formula to filter on a group level. This means I can filter to only show records for a certain account, but my group levels show the totals for all records, which is what I want.
However, when I come to add my...
In Crystal Reports Viewer (2008) for ASP.Net, when you click on the Export button, the Export dialog shows up with File Format options:
Crystal Reports (RPT)
PDF
Microsoft Excel(97-2003)
Microsoft Excel(97-2003) Data-Only
Microsoft Word (97-2003)
Microsoft Word (97-2003) Editable
Rich Text Format (RTF)
XML
etc..
Does anyone know h...
I want to programmatically change formulas in a whole lot of reports, like in this question, but I also need to change the formula between Crystal Syntax and Basic Syntax. I can't see any way to do this in the object model. Is it possible?
i.e. I have a formula called 'Period' that already exists in a whole lot of reports, and it's curr...
I saw the other post with a similar title but there was no answer to my problem and I was unable to post a comment so I'm asking a new question.
I have a Crystal Report that contains a field within a text object (to control line spacing) and has "can grow" selected. When I export the Crystal Report to a PDF there are instances when th...
I have a crystal report where it shows the Agent's activities throughout the day with a pie chart. In the details section it is displaying:
Activity [string]
StartedAt [DateTime]
EndedAt [DateTime]
Duration [The difference between EndedAt and StartedAt in seconds - Integer]
Report data is GroupedBy Activity and summarized by D...
When a geographic map is inserted it shows me the distribution of our members however is there a way of getting it to display the town name and the number alongside the dot instead of needing to hover over the dot to display the information. This means I can refer to these values when printing.
Does anyone know of any mapping controls t...
Using vs2008 c#.
Howdy,
Ive got an application where im trying to decide if i should use the Crystal reports or the Report viewer that comes with the visual studio install.
My issue is that while it will run fine on my development machine, a lot of the machines the application will be deployed to in remote locations WON'T have the runt...
I have some data that I've staged in my database as such:
RowHeader ColumnHeader Value
Row1 Col1 (1,1)
Row1 Col2 (1,2)
Row1 Col3 (1,3)
Row1 Col4 (1,4)
Row1 Col5 (1,5)
Row2 Col1 (2,1)
Row2 Col2 (2,2)
...
The company I work for is looking for a reporting solution with the following requirements:
Must be able to generate a set of reports nightly.
Must give the client the ability to create reports dynamically.
Must have robust export features.
Must have a viewer that can be displayed within a web application.
The company is looking at u...
We are reviewing our need for Crystal Enterprise - Business Objects. Our requirements are to have a way for users to login and choose from an selection of reports dependant on what they have access to. These reports are all designed in Crystal Reports and link to various databases. Are there any enterprise type solutions for hosting r...
When designing a Crystal Report, when formatting field objects, there's a place to enter the Tool Tip Text. How do I get that text from a report using the Crystal Reports .NET API, or the RAS API?
I see in the help file, there's a ToolTip property in the Crystal Reports API, and a ToolTipText property in the RAS API, but I couldn't figu...
hello friends,
I am facing one strange but typical problem.
In one my form I have DataSet filled up with so much of data which I need to use throughout the form.
& I have 1 "print report" button also.
When user click on that a report gets
displayed. But after I click on that
my DataSet gets cleared & so after
that bug comes...
hi all.
i wants to know that is there is any way to show reports without reportviewer control
My reports are deployed on the report server. now i wants to show these reports in a web application. Please let me know that the any other way to show reports. I do not wants to use report viewer control.
...