activereports

How get page size from MemoryStream or Byte ?

I have images of active report in database, when i get into bytes and convert into memory stream so it can pass to active report viewer then how i get paper size of paper display in active report? My code : Dim repmem As New System.IO.MemoryStream(rptBytes) repmem.Position = 0 Viewer1.Document.Load(repmem) ...

printing Activereports page programatically

How do you print a specific page from the activereports report Windows viewer control programatically? ...

Using different versions of the same assembly.

I have a project where I simultaneously must use reports built in ActiveReports 2 and ActiveReports 6. Overall, it works ok, but some of the helper assemblies use the same name. For instance, to be able to export to PDF, both versions use an assembly called ActiveReports.PdfExport.dll. The corresponding assemblies are different, of co...

Is there a way to get programmatic access to the columns of a ActiveReports detail section?

Hello, I have a report in Data Dynamics ActiveReports for .NET. In this report I am programmatically setting the ColumnCount property of the detail section to X. The detail section has one databound textbox. The ColumnDirection property of the detail section is set to AcrossDown and the and then the data binding mechanism automa...

How do you export an report while using ActiveReports

I'm using Active Reports within my VB program to generate a report based on my data. Right now I have the report opening fine and it is allowing the user to print, copy, find, etc. I am unsure how to add the functionality to let the user choose to export the chart once the program is running. I've been looking at many tutorials but the...

Active Reports winforms viewer control hosted in WPF Window

There is currently not an available WPF viewer for Active Reports 6. I was attempting to use a host control to display the viewer in a interop host but I'm not having much luck. Has anyone else attempted this successfully? I can't even get the wrapper Viewer control to add to the project toolbox as a custom control at this point. I'...

.NET's license compiler (LC.EXE) seems to ignore the contents of licenses.licx on one machine, but not on the other. Why?

Background info: I've set up a very simple .NET solution in VS2008 that contains just enough code to display an ActiveReports report in a preview window. The ActiveReports component uses the licenses.licx mechanism to decide whether it has been properly licensed or not. If it finds no valid license key, it will display a prominent messag...

Page-specific margin setting in AR3...

Hi SO! I'm trying to programmatically set the margins in an active report based on the page number. Specifically, the first page needs to have small margins (so that the top-most text box with a return address matches the alignment of a company logo) and every page after that should have standard 2.54cm margins. I've read posts that ...

Problem with ActiveReports(3.0) printing blank pages

Is there any way to determine if a page has any content? I am running into a sporadic issue where in my 4-page report I will ocassionally get a blank detail section (header/footer displayed) before going on to the next page. I think it occurs because I have a sub-report on the 3rd page that might push down a little too far depending on ...

Having problem in rendering subreport existing in group footer

Hi, I have to fix a report designed by Acive report and I am fairly new to this. The problem occurs after converting this report from frame work 1 to 2 .Nothing is changed but sub report showing the total count does not show up. I have a main report(RptReport.vb) having a group containg 6 subreports in its footer(GrpFooter). It Has: Re...

DataDynamics ActiveReports is not printing the page footer

I am using DataDynamics ActiveReport to generate a report. When I run the program and generate the report everything looks fine. Yet when I print the report the page footer isn't printed. What is going wrong and how do I fix this? EDIT: In case this is needed I am creating an 11x17 report in landscape mode. I am able to export this to ...

ActiveReports always prints last page when NewPage is set to "After"

I have an ActiveReports file with the NewPage property set to "After" in the Detail Section of my report. Every time I print, I get an extra page at the end of the report. How can I prevent this from happening? The only extra page is the last page. So I'm pretty sure this is not an issue about page margins. ...

Adding a subreport to Active Reports

I'm writing a report in VB .NET (using Active Reports) that displays details about a location, and then displays a bunch of images, which are stored in a database. The images are displayed in my main report via a subreport. However, I can't get the images to load. I have two files, the main report (rptMain) and the image subreport (rpt...