|
Is there free software that converts Crystal Reports .rpt files to SQL Reporting 2008 .rdl files?
Started by JonathanWolfson on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
See RptToXml.
There are several companies that offer RPT to RDL conversion services for different costs, but free software for this purpose is not available .
You'll quickly find out that this isn't allowed due to Crystal licensing restrictions .
|
|
I am looking into the idea of creating a custom report builder and data tool to replace the ssrs report builder.
I am wanting something more like a query builder and data export tool rather than reporting.
The thing I want to use is the report model. ...
Answer Snippets (Read the full thread at stackoverflow):
You can quite easily use the web services provided with SSRS to get at the XML for a report model, and you may be able to then use this as a form of ORM to be able to get a LINQ a report is created with....
But...
Report Builder 2.0.
|
|
It seems that due to ActiveX that Firefox can't display the print icon/button on the Report Viewer control in SQL Server Reporting services. Has anybody figured out a way to work around this or gotten this to work?
If it's not possible, does anybody know...
Started by Don on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You could ....
I found the div using the firebug firefox extension - it's great .
You could place a button in the "msrs-buttonHeaderBackground" div using a javascript button .
As you state, the print functionality is ActiveX, so it will not work in Firefox .
|
Ask your Facebook Friends
|
Report viewer from SQL reporting services in VS 2008 report control If I create a new report in VS 2008 they have a .rdlc extension and work correctly.
I have some reports that I was using in SQL reporting services. Extensions are .rdl and want to get...
Started by Maestro1024 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Remote rendering" report in your ReportViewer control)
basically re-create the whole report as a local report from scratch
It's unbelievable - but unfortunately, it's the truth let's hope with .NET 4 - and it will give a nice PDF....
|
|
We are using Reporting Services to generate a purchase order, which is rendered as pdf before displaying on the screen. The report works well, as is, except that now we have to add a Terms & Conditions page to every PO. I've tried placing it in the footer...
Started by Kyle on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
ITextSharp (a port of the java version iText....
A similar question that may satisfy your requirements was posted and answered later today:
http://stackoverflow.com/questions/808670/combine-two-or-more-pdfs
Check out the PDFSharp...that looks interesting .
|
|
Hi,
Is there a way to configure the Report Server to Archive the reports to the Report Server or to a path on the File System.
I need to save the reports generated as .pdf files.
TIA.
Answer Snippets (Read the full thread at stackoverflow):
Click the Properties tab for that report.
Have you considered using "Report History"?
Here's how you create Report History:
In Report Manager, select the report for which you want history and view the report.
|
|
When do we use client side reporting and when do we use server side reporting?
Which reporting is best practice (client/server)?
This pertains to SSRS reporting.
Started by jazzrai on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Server side reporting you'd use in the scenario where you either need to simplify the report distribution are smaller as for many....
On the client side which you need to report on even if the connection to the server is unavailable.
|
|
I currently have a crystal report that I'm generating in Visual Studio 2008 which has a sub-report. I've linked the sub-report parameters and when I run the report from the report previewer within visual studio, it runs fine.
HOWEVER
When I deploy the...
Started by lomaxx on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Did you checked DataSources for main report and sub report ? Did you checked if sub report is embedded in the main report ? Did you deployed the Sub report if it is not embedded ? How many and what you some directions....
|
|
Hi,
I created a simple reporting services report. I would like to include this report in the web site. I read that we need to deploy the report to the report server in order to use it in the aspx page. Is it possible to include the report in the web site...
Started by Sridhar on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The report extension should be "....
It is possible to display the report by including the report in the web site project.
Your report path does not have to have.
ReportViewer>
ReportName is the name of your .RDL file, etc.
|
|
Is there anyway to determine the form name that the report was called from? I would like to write some VBA code in report to determine where is the report was called from. I have Access 2003.
Started by THEn on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You can open a report like this:
DoCmd.OpenReport "reportFoo", acPreview, , , , Me.Name
and something like this in the report:
Private Sub Report_Open End If End Sub
One way is to....
Remains open, store the information on the form.
|