Click here to Skip to main content
Click here to Skip to main content

Two simple workarounds for the ReportViewer problems

By , 4 Jan 2007
 

Introduction

In an application containing the ReportViewer control I have had two following problems :

  1. When the ReportViewer is rendering, trying to close the Parent Form of the ReportViewer may cause to crash the Application.
  2. There is no straight way to copy the report data to the Clipboard.

Description

Rendering problem :

If there are many pages in a report, it takes a few seconds to render. In this case if the user wants to cancel report rendering and closes the Form containing the ReportViewer control, the Application will crash. To solve this problem I used the RenderingBegin and RenderingComplete events of the ReportViewer and the FormClosing event of the Parent Form.

To see how the problem is occurred, consider the included source files. After running the project there are nineteen pages in the report. (32 pages in the print layout mode). By clicking the 'Print Layout' button, the report begins rendering. While the report is rendering, if the user closes the Parent Form, the Application will crash (If we comment added event handlers).

Copy to the Clipboard :

In a report, there is no straight way to copy the report data to the Clipboard. The only way that is available is using the Hyperlink event of the ReportViewer control (There is an related article by Teo Lachev at http://www.devx.com/dotnet/Article/30424/0/page/6) . To do this, we should set some attributes at the design time :

  • Suppose that there is a 'table' item on the report file. Select each TextBox from the 'Table Details' row.

  • Go to the Properties -> Navigation -> 'Hyperlink action' -> 'Jump to URL'.

  • In the following ComboBox write '= "NoLink:" & Fields!FieldName.Value' . (Replace FieldName with the name of field)

Using the code

For the rendering problem, a variable named IsRendering is defined. In the RenderingBegin we set IsRendering = false. While report is rendering it prevents closing the form by user. The code is as below :

<summary>
</summary>bool IsRendering = false;<summary>

// It cancels the FormClosing while the ReportViewer is rendering.   
</summary>private void ReportForm_FormClosing(object sender, FormClosingEventArgs e)
{
    if (IsRendering) e.Cancel = true;
}

<summary>// When rendering begins it sets IsRendering = true.
</summary>private void reportViewer1_RenderingBegin(object sender, CancelEventArgs e)
{
    IsRendering = true;
}

<summary>// When rendering is completed it sets IsRendering = false.
</summary>private void reportViewer1_RenderingComplete(object sender,
                                        RenderingCompleteEventArgs e)
{
    IsRendering = false;
}
For the copy problem, after setting the required attributes at the design time, we write below code in the reportViewer1_Hyperlink event handler :
<summary>// Copy the report data to the Clipboard.
</summary>private void reportViewer1_Hyperlink(object sender, HyperlinkEventArgs e)
{
    Uri uri = new Uri(e.Hyperlink);
    if (uri.Scheme.ToLower() == "nolink")
    {
        e.Cancel = true;
        Clipboard.Clear();
        Clipboard.SetText(uri.AbsolutePath);
    }
}

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Afrasiab Cheraghi
Web Developer
Iran (Islamic Republic Of) Iran (Islamic Republic Of)
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 2memberbuyong21 Sep '11 - 16:54 
GeneralEven after changing to the Hyperlink it don't let you copy to the clipboardmemberKaveti24 Aug '07 - 11:20 
GeneralRe: Even after changing to the Hyperlink it don't let you copy to the clipboardmemberAfrasiab Cheraghi24 Aug '07 - 13:51 
GeneralRe: Even after changing to the Hyperlink it don't let you copy to the clipboardmemberKaveti27 Aug '07 - 2:47 
GeneralRe: Even after changing to the Hyperlink it don't let you copy to the clipboardmemberAfrasiab Cheraghi28 Aug '07 - 7:52 
QuestionThe ReportViewer ToolbarmemberKschuler25 Jan '07 - 8:30 
AnswerRe: The ReportViewer ToolbarmemberAfrasiab Cheraghi26 Jan '07 - 0:28 
QuestionRe: The ReportViewer ToolbarmemberKschuler29 Jan '07 - 8:35 
AnswerRe: The ReportViewer ToolbarmemberAeroday19 Jul '07 - 6:17 
Questionthis is MFC/C++ ?memberoleguaua3 Jan '07 - 19:07 
AnswerRe: this is MFC/C++ ?memberAfrasiab Cheraghi3 Jan '07 - 21:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130523.1 | Last Updated 4 Jan 2007
Article Copyright 2007 by Afrasiab Cheraghi
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid