private void btnExport_Click(Object sender, System.EventArgs e)
{
rptGrapeCity rpt = new rptGrapeCity();
GrapeCity.ActiveReports.Export.Image.Tiff.Section.TiffExport t = new GrapeCity.ActiveReports.Export.Image.Tiff.Section.TiffExport();
rpt.Run();
this.arv.Document = rpt.Document;
t.CompressionScheme = GrapeCity.ActiveReports.Export.Image.Tiff.Section.CompressionScheme.Ccitt3;
t.Dither = True;
t.Export(rpt.Document, Application.StartupPath + "\\t.tiff","1-2");
}