ActiveReports 9
LoadUrl Property
Example 

Gets or sets a URL from which to download the document asynchronously using internet protocols.
Syntax
'Declaration
 
Public Property LoadUrl As System.String
public System.string LoadUrl {get; set;}
Example
private void Form1_Load(object sender, EventArgs e)
{
    SectionReport1 rpt = new SectionReport1();
    rpt.Run();
    rpt.Document.Save(@"C:\Inetpub\wwwroot\LoadURLTest\report_Normal.rdf", GrapeCity.ActiveReports.Document.Section.RdfFormat.ARNet, GrapeCity.ActiveReports.Document.Section.SaveOptions.Normal);
    this.viewer1.Document.LoadUrl = "http://localhost/Loadurltest/report_Normal.rdf";

}
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

    Dim rpt As New SectionReport1
    rpt.Run()
    rpt.Document.Save("C:\Inetpub\wwwroot\LoadURLTest\report_Normal.rdf", GrapeCity.ActiveReports.Document.Section.RdfFormat.ARNet, GrapeCity.ActiveReports.Document.Section.SaveOptions.Normal)
    Me.Viewer1.Document.LoadUrl = "http://localhost/Loadurltest/report_Normal.rdf"

End
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

SectionDocument Class
SectionDocument Members

 

 


Copyright © 2014 GrapeCity, inc. All rights reserved

Support Forum