ReportViewer.RefreshReport Method ()

 

Causes the current report in the Report Viewer to be processed and rendered.

Namespace:   Microsoft.Reporting.WinForms
Assembly:  Microsoft.ReportViewer.WinForms (in Microsoft.ReportViewer.WinForms.dll)

Syntax

public void RefreshReport()
public:
void RefreshReport()
member RefreshReport : unit -> unit
Public Sub RefreshReport

Remarks

Calling the RefreshReport method causes all data in the report to be reloaded and rendered. A call to RefreshReport is automatically added to the Form Load event handler when a ReportViewer control is added to a form.

Examples

Legacy Code Example

Private Sub Form1_Load(ByVal sender As System.Object, _
            ByVal e As System.EventArgs) Handles MyBase.Load
   Me.ReportViewer1.RefreshReport()
End Sub
private void Form1_Load(object sender, EventArgs e)
{
   this.reportViewer.RefreshReport();
}

See Also

ReportViewer Class
Microsoft.Reporting.WinForms Namespace

Return to top