Good Day,
I was wondering if you could lend me a helping hand?
I had a report set out like people do in spreadsheets, heading, followed by data underneathe.
I was using a page header as I wanted the heading to be displayed for each page the data flows onto, the only problem was, once the columns exceeded a certain number, the headings were truncated and further not displayed and then the data on the next page didn't have a heading.
Next I decided to use a report header, which appeared to be the answer to my solution at first but the headers were only displayed once, thus the remaining pages didn't contain any headings for the data they represented. Using a Group Header gave me the same result.
Basically for each column display the results for A, B & C, for instance, I would like "A", "B" & "C" to be displayed above their respected columns of data.
Is there a way this can be achieved?
Any help will be greatly appreciated.
Thankyou,
David
private void reportViewer1_Load(object sender, EventArgs e)
{
LETGReportLibrary.
rptMasterAddress MyReport = new LETGReportLibrary.rptMasterAddress();
MyReport.AddressID = 8164;
reportViewer1.Report = MyReport;
reportViewer1.RefreshReport();
}
When I run the windows application, no data shows on the report. I know when I run the query, 14 rows come back. Why doesn't the data show in the windows application?
Server Error in '/' Application.
Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Could not load file or assembly 'Microsoft.ReportViewer.WebForms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.
Source Error:
Line 1: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="AuditReport.aspx.cs" Inherits="Htdocs_html_AuditReport" %> Line 2: Line 3: <%@ Register Assembly="Microsoft.ReportViewer.WebForms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"Line 4: Namespace="Microsoft.Reporting.WebForms" TagPrefix="rsweb" %> Line 5:
Source File: /html/AuditReport.aspx Line: 3
Assembly Load Trace: The following information can be helpful to determine why the assembly 'Microsoft.ReportViewer.WebForms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' could not be loaded.
WRN: Assembly binding logging is turned OFF. To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1. Note: There is some performance penalty associated with assembly bind failure logging. To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].

