ActiveReports 6 Online Help
CacheToDiskLocation Property
Example 

Gets or set the location of CacheToDisk files. The location can be a physical path or IsolateStorage.
Syntax
'Declaration
 
Public Property CacheToDiskLocation As String
public string CacheToDiskLocation {get; set;}
Remarks
Temporary files and folders created in IsolatedStorage are not deleted automatically.
Example
private void arv_Load(object sender, System.EventArgs e) 
{ 
    rptDocument rpt = new rptDocument(); 
    rpt.Document.CacheToDisk = true;
    rpt.Document.CacheToDiskLocation = "C:\\Temp"; 
    rpt.Run(); 
    arv.Document=rpt.Document; 
}
Private Sub arv_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles arv.Load
    Dim rpt As New rptDocument
    rpt.Document.CacheToDisk = True
    rpt.Document.CacheToDiskLocation = "C:\\Temp
    rpt.Run()
    arv.Document = rpt.Document
End Sub
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

Document Class
Document Members

Send Feedback