Peter's Gekko

Sponsors

The Lounge

News

Advertisement

Images in this post missing? We recently lost them in a site migration. We're working to restore these as you read this. Should you need an image in an emergency, please contact us at imagehelp@codebetter.com
Exporting from Crystal Reports to PDF, Word, Excel and HTML

Crystal Reports is a welcome subjects for blog posts. I still do like the product, my users are very happy with the results, the report editor is not that bad to work with and the components integrate well into a solution. But Crystal documentation is an absolute disaster. I wanted to add some functionality to my basic export routine. The only thing was adding export to Excel and to html. This functionality is present in the basic Crystal installation but how to use it is something which took me really a lot of Googling. The answers were not on the Crystal site but in the dungeons of the usenet. Let me share what I found.

On of the things I learned is that you have to Close() a report after exporting. This was not in the official Crystal example. I havn't measured the effect but it doesn't harm.

Exporting to Excel turned out to be just a matter of setting the right content type. This type turned out to be application/vnd.ms-excel. I had expected application/msexcel, as a nice sibling to application/msword. Exporting to Excel has some extra format options but you can do without them for a basic export. I'll leave these for another post.

To get the exporting to html to work took some things which are next to ridiculous, but I got it working. You have to set some format options. In these options you set the root directory and the filename. This directory-filename pair should be identical to the export filename passed to the report. The result will be an html formatted report, but in a "slightly" different location. To find the result you have to do some tricks. When Crystals creates a report is does create a temporary .rpt file. This file is stored in the windows\temp dir, it's name is a guid. When Crystal creates the exported report it creates a directory in the root directory supplied with the name of this guid. In this directory the report will be created, using the filename supplied. Thank goodness the name of the temporary file is available in the FilePath property of the report. This snippet demonstrates the workaround:

string[] fp = selectedReport.FilePath.Split("\\".ToCharArray());
string leafDir = fp[fp.Length-1];
// strip .rpt extension
leafDir = leafDir.Substring(0, leafDir.Length - 4);
tempFileNameUsed = string.Format("{0}{1}\\{2}", tempDir, leafDir, tempFileName);

To sum it all up :

protected void exportReport(CrystalDecisions.CrystalReports.Engine.ReportClass selectedReport, CrystalDecisions.Shared.ExportFormatType eft)
{
    selectedReport.ExportOptions.ExportFormatType = eft;

    string contentType ="";
    // Make sure asp.net has create and delete permissions in the directory
    string tempDir = System.Configuration.ConfigurationSettings.AppSettings["TempDir"];
    string tempFileName = Session.SessionID.ToString() + ".";
    switch (eft)
    {
    case CrystalDecisions.Shared.ExportFormatType.PortableDocFormat :
        tempFileName += "pdf";
        contentType = "application/pdf";
        break;
    case CrystalDecisions.Shared.ExportFormatType.WordForWindows :
        tempFileName+= "doc";
        contentType = "application/msword";
        break;
    case CrystalDecisions.Shared.ExportFormatType.Excel :
        tempFileName+= "xls";
        contentType = "application/vnd.ms-excel";
        break;
    case CrystalDecisions.Shared.ExportFormatType.HTML32 :
    case CrystalDecisions.Shared.ExportFormatType.HTML40 :
        tempFileName+= "htm";
        contentType = "text/html";
        CrystalDecisions.Shared.HTMLFormatOptions hop = new CrystalDecisions.Shared.HTMLFormatOptions();
        hop.HTMLBaseFolderName = tempDir;
        hop.HTMLFileName = tempFileName;
        selectedReport.ExportOptions.FormatOptions = hop;
        break;
    }

    CrystalDecisions.Shared.DiskFileDestinationOptions dfo = new CrystalDecisions.Shared.DiskFileDestinationOptions();
    dfo.DiskFileName = tempDir + tempFileName;
    selectedReport.ExportOptions.DestinationOptions = dfo;
    selectedReport.ExportOptions.ExportDestinationType = CrystalDecisions.Shared.ExportDestinationType.DiskFile;

    selectedReport.Export();
    selectedReport.Close();

    string tempFileNameUsed;
    if (eft == CrystalDecisions.Shared.ExportFormatType.HTML32 || eft == CrystalDecisions.Shared.ExportFormatType.HTML40)
    {
        string[] fp = selectedReport.FilePath.Split("\\".ToCharArray());
        string leafDir = fp[fp.Length-1];
        // strip .rpt extension
        leafDir = leafDir.Substring(0, leafDir.Length - 4);
        tempFileNameUsed = string.Format("{0}{1}\\{2}", tempDir, leafDir, tempFileName);
    }
    else
        tempFileNameUsed = tempDir + tempFileName;

    Response.ClearContent();
    Response.ClearHeaders();
    Response.ContentType = contentType;

    Response.WriteFile(tempFileNameUsed);
    Response.Flush();
    Response.Close();

    System.IO.File.Delete(tempFileNameUsed);
}

Which is pretty straightforward and even works. With a lot of thanks to the many people on the web who have also been strugling with this.

Peter


Posted Wed, Feb 11 2004 7:36 AM by pvanooijen
Filed under:

[Advertisement]

Comments

Ramesh wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Mon, Mar 22 2004 9:27 AM
Hi,
Is there any way to export .rpt files as text files. I am using crystal reports 9.0 and .Net framework..
I want to export them dynamically in the code.
I could able to export to pdf,doc and html..But not to text.

Ramesh
Peter van Ooijen wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Mon, Mar 22 2004 9:34 AM
Afaik the CR which ships with VS only supports the four formats described here. In case anybody knows of another format, I'll gladly incorporate it in the example.
eaz wrote I want my Grid Lines !
on Mon, Mar 29 2004 8:35 AM

I do stuff similiar to export to an excel file, but when I do, I see no grid lines in the created excel file by default. Is there a way to set this so that it shows the grid lines? (It looks like a word document running somehow inside excel...)

Thanks,
eaz
Peter van Ooijen wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Tue, Mar 30 2004 1:02 AM
That's an Excel setting which is not in the CR enumeration of options. You can access Excel using COM, but I'm not sure about the Excel viewer. What you could try is inject a little script which will set the option.
Dave wrote Exporting to stream?
on Wed, Mar 31 2004 9:37 PM
Has anyone had any luck exporting CR to streams? I can use crReport.ExportToStream(format) fine for the format types CrystalReport and PDF, but everytime I try using it for HTML (3.2 or 4.0), it blows up with a FileNotFoundException (it's looking in the DocumentsAndSettings\username\LocalSettings\Temp folder for a temp_*******.tmp file. The ******* looks like a guid, but it's different from the one identified above.

As a sanity check, I'm not even running in ASP.Net yet; I'm using WinForms to do my feasibility testing, and I'm an admin on the machine.

Thoughts?
Wajid wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Sat, Apr 10 2004 4:06 AM
ReportDocument doc = new ReportDocument ();
doc.Load(this.MapPath("allah.rpt"));
doc.SetDataSource(ds);
ExportOptions exportOpts = doc.ExportOptions;
exportOpts.ExportFormatType = ExportFormatType.PortableDocFormat;
exportOpts.ExportDestinationType = ExportDestinationType.DiskFile;
exportOpts.DestinationOptions = new DiskFileDestinationOptions();
string Fname ="C:\\T\\" + Session.SessionID + ".pdf";
DiskFileDestinationOptions diskOpts = new DiskFileDestinationOptions();
( ( DiskFileDestinationOptions )doc.ExportOptions.DestinationOptions ).DiskFileName = Fname ; //Server.MapPath("fin.pdf");
doc.Export();
Response.ClearContent();
Response.ClearHeaders();
Response.ContentType = "application/pdf";
//Response.ContentType = "application/msword";
Response.WriteFile(Fname);
Response.Flush();
Response.Close();
Peter wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Sun, Apr 11 2004 3:21 PM
Thanks !
Divebouy wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Mon, Apr 12 2004 4:44 PM
Any way to remove the toolbars from the exported PDF? I want to ensure that my users can't edit the PDF. Currently streaming to browser but haven't figured this one out.

Thanks~
Divebouy wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Mon, Apr 12 2004 4:45 PM
Sorry, using CR9, ASP.NET framework.
Peter van Ooijen wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Tue, Apr 13 2004 3:08 AM
That is a setting of the PDF viewer, not the document itself. Maybe you can do that using some script in which you address the viewer as an ActiveX control.
Pradeep wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Wed, Apr 14 2004 9:15 PM
Hey Pete,
Is there a way I could export the .RPT file to a .CSV file?
Pls advise
Peter van Ooijen wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Thu, Apr 15 2004 7:47 AM
Afaik these are all the formats CR supports.
When it comes to csv I would do that by hand or use something like DTS (sql server).
vijay wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Thu, Apr 22 2004 4:57 AM
what in case id one parameter set in crystal report take more then one values how do u send parameter to report and get output exported
Peter van Ooijen wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Thu, Apr 22 2004 3:01 PM
I'm not sure if I understand the question.

In the post is a method which takes a report as a parameter. Before sending your report to the method you can do anything with the report you would like to do.
Brent Railey wrote Problem Exporting to PDF
on Wed, May 5 2004 4:14 PM
When I try to execute an export, it seems to not be passing the parameters to the report.

I set them in code, but when I view the export, it always has just the default values of the parameters.
Peter van Ooijen wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Thu, May 6 2004 9:03 AM
I'll dive into the parameters problem when the need arises :> And blog about all solutions / problems found.
Jimmy wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Wed, May 26 2004 9:03 PM
I try to convert the c# code to vb.net, pdf and doc format is working fine, however I encounter the problem in exporting the html file from the report. is there any different between c# and vb.net code in exporting the html file from the report
Jimmy wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Wed, May 26 2004 9:59 PM
I try to use ExportToDisk to export the HTML file, but the system error message. Any idea on the problem?
Peter van Ooijen wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Sat, May 29 2004 1:57 PM
Error message ? Containing what ? Wrong directory ? No rights to create temp file ?
Brett wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Wed, Jun 9 2004 9:28 AM
Is there a way to export specific fields from the Crystal Report to an Excel file instead of exporting the entire Crystal Report????
Mythran wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Thu, Jul 1 2004 12:02 PM
The following are all of the formats I got to work when exporting to them. With the exception of NoFormat (which, for some reason, doesn't work :P).

<xs:enumeration value="NoFormat" xmlns:xs="http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema" /><xs:enumeration value="CrystalReport" xmlns:xs="http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema" /><xs:enumeration value="RichText" xmlns:xs="http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema" /><xs:enumeration value="WordForWindows" xmlns:xs="http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema" /><xs:enumeration value="Excel" xmlns:xs="http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema" /><xs:enumeration value="PortableDocFormat" xmlns:xs="http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema" /><xs:enumeration value="HTML32" xmlns:xs="http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema" /><xs:enumeration value="HTML40" xmlns:xs="http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema" /><xs:enumeration value="ExcelRecord" xmlns:xs="http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema"">http://www.w3.org/2001/XMLSchema" />
shruthi wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Tue, Jul 6 2004 4:51 AM
my problem is to export 1500 pages of reports to excel sheet. when i try to hit the export button , excel sheet comes but without any data . is this bcoz of the size? if this is,then how to handle large amount of reports for exporting
Peter van Ooijen wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Tue, Jul 6 2004 9:49 AM
I wouldn't use Crystal to do this but talk to Excel directly using automation.
FAN wrote Got an Error
on Tue, Jul 13 2004 5:13 PM
Error in File C:\DOCUME~1\PGSREP~1\ASPNET\LOCALS~1\Temp\temp_25c38772-b7c2-41b1-a4a4-095fa7f44ede.rpt: Access to report file denied. Another program may be using it.
Got an Error (2) code wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Tue, Jul 13 2004 5:14 PM
protected CrystalDecisions.Web.CrystalReportViewer CrystalReportViewer1;
Utility ou = new Utility();
protected System.Web.UI.WebControls.Button btnPrint;
protected RPT_ChargebackByPaymentType rcpt;

private void Page_Load(object sender, System.EventArgs e)
{
rcpt = new RPT_ChargebackByPaymentType();
ou.LogOnToDataBase(rcpt);
CrystalReportViewer1.ReportSource = rcpt;
CrystalReportViewer1.Visible = true;
}


private void btnPrint_Click(object sender, System.EventArgs e)
{
exportReport(rcpt,CrystalDecisions.Shared.ExportFormatType.PortableDocFormat);
}
Peter van Ooijen wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Wed, Jul 14 2004 2:46 AM
The error is on a temp report file. Does you app have the rights to scratch in that dir ? afaik this error message pops up when it does not.

I have a another Crystal post on this http://dotnetjunkies.com/WebLog/petergekko/archive/2004/01/16/5678.aspx
Fan wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Thu, Jul 15 2004 4:05 PM
Thanks, working great
jaiganesh wrote re: Exporting from Crystal Reports to , Word,
on Mon, Jul 19 2004 2:57 PM
i am not able to exporting from crystal reports to wordm, could you find out and tell me,(exporting is working but the format is not come)
Sbr wrote Exporting from Crystal Reports 10
on Fri, Jul 30 2004 3:29 AM
Hi,

I'm using CR10 + ASP.NET.
The export button of the report page open the Export page. In the export page there is a dropdownlist with folowing formats :
- Crystal Reports (RPT)
- Acrobat Format (PDF)
- MS Word
- MS Excel 97-2000
- MS Excel 97-2000 (data only)
- Rich Text Format

My question is : How to hide some of those choises ? (I don't want the "Crystal Reports (RPT)" export format in the list)

Pad wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Tue, Aug 3 2004 10:36 AM
Good One
Aruna wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Mon, Aug 9 2004 11:00 AM
Have any of you received error while exporting to PDF (from vb.net appln). CrystalDecisions.CrystalReports.Engine.ExportException: Error in file .. Error detected by export DLL? Is there any specific downloads to be installed for exporting CR to PDF. Let me know if you need further information.

Thanks, Aruna.
Alex wrote Exporting to HTML, Destination E-mail
on Mon, Aug 9 2004 2:17 PM
Does ANYONE know how to export report into HTML with destination being MicrosoftMail instead DiskFile? I get "The directory is empty" error message if I try to export to HTML with destination set to Microsoft Mail.

I specify both HTMLBaseFolderName and HTMLFileName, but I still get the error...

PLEASE HELP!!!
Peter van Ooijen wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Mon, Aug 9 2004 3:35 PM
I suggest you write the HTML mail message to a temporary file and send that file to mail. You'll have to look in the MSmail docs what kind of inputs it accepts as a message body.
Peter van Ooijen wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Mon, Aug 9 2004 3:38 PM
These formats come with the default install of CR. I think the error in file points to an non existent directory or the lack of rights to write to the directory. Crystals error messages are often very misleading.
Aruna wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Tue, Aug 10 2004 9:06 AM
Thanks for your response. With regard to your suggestion, the file it creates goes to c:\documents and settings\local settings\user\temp\temp file name.rpt (where all directory names over 8 letters are shortened with a ~1. While it is giving the error message I went to document and setting directory and checked that a .RPT temp file of 2k bytes exists and till I close my application it does not let me open the file saying somebody is already accessing it. So, I am thinking it may not be access problem since the temp file is created. Do you have any other ideas.
Imp Note: The same application works in another machine i have. It has the same operating system and old one has VS.Net std and new one with the problem has vs.net architect version (with Visio, VSS) etc. Old one has Adobe 6.0 std and new one has Adobe 6.0 Prof. ALso, exporting to XLS works fine in both (Both in XLS and PDF option I point to the same directory on network).
I tend to think this could be a problem with some DLLs not being registered okay.
Let me know if you have ideas or further questions. (hope i have not confused).

Peter van Ooijen wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Tue, Aug 10 2004 11:30 AM
You get the error because Crystal has not closed the file yet. It's still using it. If the problem is only there with the pdf output I would check Adobe. Perhaps the Pro version doesn't like your app competing ? And yes, DLL's not being registered properly will give problems.
The are all the open doors I can kick in..
Aruna wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Tue, Aug 10 2004 2:17 PM
Thanks for your input again. So far I found out that machines that has Adobe 6.0 Standard installed works fine. Ones with Adobe 6.0 Professional installed does not work. Gives the same error. Unfortunately, uninstalling 6.0 Professional and re-installing 6.0 Standard did not help either.
nalin wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Wed, Aug 11 2004 11:16 PM
when i use application/msword, the required page opens in the explorer window but without word's standard & formating toolbar (for this i have to manually active the said toolbars).

any addition in the script i can do to pre-activate the menus so that users dont have to do the same

Peter van Ooijen wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Thu, Aug 12 2004 2:57 AM
That's default behaviour of (the) Word viewer in IE. If you want to change that from your web server for your user's browser you could try to do it using automation in the script of the browser... Slippy territory.
Aruna wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Thu, Aug 12 2004 12:03 PM
Hotfix from crystal reports
http://support.businessobjects.com/communityCS/FilesAndUpdates/crnet11win_en.zip.asp
fixed the error "Error in DLL" while exporting to PDF.

Thanks everyone for inputs.
Aruna.
NHM wrote Exporting from Crystal Reports to Excel
on Tue, Aug 24 2004 8:22 AM
Hi, after u export to Excel... the columns are nicely created, but it creates empty columns between each of the data columns, which difficults the sorting...
any ideas to prevent the creation of this empty columns?

thanks,
Nuno Mendes
NHM wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Fri, Aug 27 2004 6:50 AM
ok, ok , i got it... easy... just keep the fields (on the designer) tight together... don't leave any spaces between them... and excel will eat it just right...
Habib wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Thu, Sep 9 2004 12:33 AM
I have a graph report when I export it to Excel its exporting well but the lines in lagend are not exporting to excel.Any one canm help in it?
Albert wrote Read-Only Export Document
on Mon, Sep 20 2004 12:03 PM
There is any way to export to Word or Excel in a read only document (no editable)???
Albert wrote Read-Only Export Document
on Mon, Sep 20 2004 12:03 PM
There is any way to export to Word or Excel in a read only document (no editable)???
jjp wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Mon, Sep 20 2004 5:11 PM
how about mulit rpt to pdf
like report1.rpt, report2.rpt to pdf1.pdf
can I do that?
Shams wrote re: Exporting from Crystal Reports to HTML with using CE10
on Fri, Sep 24 2004 7:42 AM
Help:

Hi, I really will appreciate any respond for this issue:

I'm using CR10 + CSP page and ASP.NET.Application

I got Export to PDF format working fine by using Export Format Constants value in CSP page.
crReportExportFormatPDF = 5

But my problem now I can't find what is the
Export Format Constants for HTML.
'-----------------------
'Crystal Report = 0
'MS Word = 1
'MS Excel = 2
'RTF = 3
'Excel(Data Only) = 6
'Text = 7
'Character Separated Values = 8
Thanks
Peter van 0oijen wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Fri, Sep 24 2004 8:31 AM
Sorry about that. This post is on the CR 9 as it is in the vs box. I only know the differences between the versions are quite structural.

Why are you using hard coded nummerical constants and not the CrystalDecisions.Shared.ExportFormatType enumeration ? Or whatever name that has in CR 10.
Shams wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Fri, Sep 24 2004 8:42 AM
This is the code I used in CSP page and it works for PDF

Dim expOpt
Dim formatOpt
Dim exportControl

Set ObjFactory=Server.createobject ("Crystalreports.objectfactory")

'Create the Export Options Object
Set expOpt = objFactory.CreateObject("CrystalReports.ExportOptions")

'Create the Format Options Object
Set formatOpt = objFactory.CreateObject("CrystalReports.PDFExportFormatOptions")

'Export Format Constants
'-----------------------
'Crystal Report = 0
'MS Word = 1
'MS Excel = 2
'RTF = 3
'Excel(Data Only) = 6
'Text = 7
'Character Separated Values = 8

'Set format options for export
expOpt.FormatOptions = formatOpt

'Define export format
crReportExportFormatPDF = 5

'Set Format Type
expOpt.ExportFormatType = crReportExportFormatPDF


'Create a Crystal Report Export Control.
Set exportControl = Server.CreateObject("CrystalReports.CrystalReportExportControl")

So by this way the report will open as a PDF but now I need to modify this code to open it as HTML.

SO what do you think? Any advice
Peter van 0oijen wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Fri, Sep 24 2004 9:20 AM
You talk to CR10 via COM, I use the VS.NET wrappers.
You use hard coded values to set the type, I use the .NET enumeration
CrystalDecisions.Shared.ExportFormatType.CrystalReport
Members :

CrystalReport
Excel
HTML32
HTML40
NoFormat
ProtableDocFormat
RichText
WordForWindows

There is overlap but the sequence differs.

I don't think you can map my story to your scenario. What I would do is give it a blind try, just throw some values at CR and see what comes back. Or find the documentation of the crExportControl...


Mark Bain wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Wed, Oct 20 2004 7:06 AM
I am running my export in a service, therefore I have no Session.SessionID... what is the name of the temp file?

Cheers,
Mark.
Peter van 0oijen wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Wed, Oct 20 2004 9:24 AM
I don't know. My story is based on ASP.NET. In your case I would expect it to be somewhere in the official temp dir of Windows. Can't you trace the file based on the other info ?
Deepasree wrote re: Exporting from Crystal Reports 5.0 to HTML
on Tue, Oct 26 2004 12:02 AM
Hi All,
I am using crystal reports 5.0 with VB6 . When I export Crystal reports in HTML format , asking me to select a path for the html file .The changed path is affecting the application path i.e it is chnaging the CURDIR$ of my application itself to the selected path. Any suggestions to resolve this issue ? Please help.
Peter van Ooijen wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Tue, Oct 26 2004 2:28 AM
I'm sorry but don't look at this post, it is about CR for asp.net 1.1. Which is different from CR for ASP.NET 1.0. And far different from CR for VB Windows.

One of the main problem with CR is that it is changing with every version. Will keep you busy forever :)
Dana Hurtig wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Fri, Nov 5 2004 1:18 PM
When exporting to excel or rtf, the file save prompts with the wrong extension (.aspx) for the file. Export to PDF and Word works great. If I manually change the extension before saving, it works. Any ideas?
Sachin wrote Don't know hoe to export a report with Parameters
on Wed, Dec 1 2004 1:08 AM
How do i export a report with parameters ? how do i specify the parameters to the report document plzz help
Sachin wrote Don't know hoe to export a report with Parameters
on Wed, Dec 1 2004 1:11 AM
How do i export a report with parameters ? how do i specify the parameters to the report document plzz help

When i export the report is gives me an error mentioning "Missing Parameter field current value"

Please Help

thanks in Advance
Karizma wrote Don't know how to export a report with Parameters
on Wed, Dec 1 2004 1:16 AM
Even i face the same problem with the export.
how do i assign the parameters to Reportdocument ?
Sri wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Mon, Dec 6 2004 8:42 AM
// Adds each parameter
private void AddParamFieldDefinition(ParameterFieldDefinitions parameterFieldDefinitions, string paramName, object paramValue)
{
prmValues prmValues;
ParameterDiscreteValue parameterDiscreteValue = new ParameterDiscreteValue();
parameterDiscreteValue.Value = paramValue;
prmValues = parameterFieldDefinitions[paramName].CurrentValues;
prmValues.Add(parameterDiscreteValue);
parameterFieldDefinitions[paramName].ApplyCurrentValues(prmValues);
}
// Calls the previous method for one parameter
private void AddParamFieldDefinition(ref ReportDocument CrystalReport, string paramName, object paramValue)
{
AddParamFieldDefinition(CrystalReport.DataDefinition.ParameterFields, paramName, paramValue);
}

Iterate through each parameter value that is available to u and call the second function in the second loop
Hpe this helps
Peter van Ooijen wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Mon, Dec 6 2004 11:42 AM
Sri,

thank you ever so much for your help turning this blog into a wiki http://dotnetjunkies.com/WebLog/petergekko/archive/2004/04/26/12183.aspx
Export to CSV Format and MPP Format in Crystal Rep wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Thu, Jan 13 2005 8:14 AM
How to Export to CSV Format and MPP Format in Crystal Reports
Ole Wielund wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Thu, Jan 20 2005 7:55 AM
Hi,

I am using the above code to export in the format of pdf, doc, xls.

The code end's with the delete of the file. This works well for doc and xls, both pdf only works if I don't delete the file.

Do you have any ideas?

Thanks.
Peter van Ooijen wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Thu, Jan 20 2005 12:19 PM
No I don't... Can you reproduce that on another machine ??
Ole Wielund wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Fri, Jan 21 2005 3:02 AM
I haven't tried it yet, but it will be my next move.
Aidas Stalmokas wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Fri, Jan 21 2005 7:01 AM
GREAT GREAT THANKS TO PETER!!!!
It's WORKING!!!!

At first I spend tons of time to getting crystalReports to work in CR format (finaly did thanks to report of Ajay in http://aspalliance.com/articleViewer.aspx?aId=265&pId=2) but CR in web printing did not satisfied me (even zooming and page'ing didn't work).

And here I found your article. It's GREAT!!!
Peter van Ooijen wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Fri, Jan 21 2005 7:09 AM
you're welcome. Thank you !
imho nothing beats PDF for nice and usable reporting in a browser. The Excel version is Ok for custom analysis. The Word version sits somewhere in the middle.
NoCR4Me wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Mon, Jan 31 2005 10:53 AM
I am using CR 10. I don't have any problems exporting in PDF and RTF formats, but when I try to export in HTML, it gives a com error -2147190908 (dll missing). I have added/registered ALL (according to CR documnet) dlls. Please help me.
TrackBack wrote Response.WriteFile and deleting temp files
on Tue, Feb 1 2005 3:26 PM
I've been working on some ASP.Net code that returns an Excel attachment in response to a button click. I'd gotten all the code to work to produce the excel document to a temporary file and needed to write this content back to the browser. In Java I would just open the file up and loop through byte array chunk at a time returning it to the browser. I was pleased to see however that the the System.Web.HttpResponse class has a WriteFile method that takes a string filename to return to the client. Sweet. So my code is something like this: Response.Clear() Response.ContentType = "application/vnd.ms-excel" Response.AddHeader("Content-Disposition", _ "attachment; filename=bom.xls") Response.WriteFile(tempPath) This worked great until I realized that I am not cleaning up my temporary files. So I changed the example to look like this: Response.Clear() Response.ContentType = "application/vnd.ms-excel" Response.AddHeader("Content-Disposition", _ "attachment; filename=bom.xls") Response.WriteFile(tempPath) If File.Exists(tempPath) Then File.Delete(tempPath) End If Imagine my surprise when now the web transaction hangs indefinitely. I stepped over the code in the debugger multiple times and everything executed with no problems and the button's click event handler exited normally. What could be the source of this issue. Well, I searched and searched for other people doing similiar things and I came across a code example by Peter Van Ooijen that uses Response.WriteFile. I instantly saw what I was leaving out. Here is the final example bit: Response.Clear() Response.ContentType = "application/vnd.ms-excel" Response.AddHeader("Content-Disposition", _ "attachment; filename=bom.xls") Response.WriteFile(tempPath) Response.Flush() Response.Close() If File.Exists(tempPath) Then File.Delete(tempPath) End If The additions of Flush() and Close() cause the web transaction not to hang. I suspect that there is an optimization under the covers that causes Writefile() not to really read from the file until some buffer is filled or Flush() is called. My deleting of the file from under its nose probably confuses it greatly, although you would expect some sort of error 500. I suppose I could confirm this with some tool like SysInternals FileMon but I will leave that up to the reader as an exercise. After all, its been a long day and I excited to have fixed this bug....
Igor wrote re: STREAM Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Wed, Feb 2 2005 4:43 PM
I will try to answer 2 of the questions above
1) in CR10 constant for HTML format is 7
2) to use stream rather than making a trip to Hard Drive each time do this:

Dim retval As Byte() = New Byte() {}
Dim s As System.IO.MemoryStream
s = m_Report.ExportToStream _(ExportFormatType.PortableDocFormat)
retval = s.ToArray
s.Close()

With HttpContext.Current.Response
.ClearContent()
.ClearHeaders()
.ContentType = "application/pdf"
.AddHeader("Content-Disposition", "inline; filename=DailyReport.pdf")
.BinaryWrite(retval)
.End()
End With


with tweaking you can get all formats to open directly in browser without cluttering server

unfortunately none of my advanced reports translates to excel or word with enough precision
if there is a way to influence this issue please let me know
Peter van Ooijen wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Thu, Feb 3 2005 6:09 AM
If you want full control of Word or Excel I would go for automation.
Arockiam wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Tue, Feb 8 2005 10:36 AM
I a using ExportToStream Method
This will work fine for pdf/word/rtf/xls

but failed in HTML32/HTML40

Dim st As System.IO.MemoryStream
st = rptDcmt.ExportToStream(CrystalDecisions.[Shared].ExportFormatType.HTML32)
Dim b(st.Length) As Byte
st.Read(b, 0, st.Length)
With HttpContext.Current.Response
.ClearContent()
.ClearHeaders()
.ContentType = "text/html"
.BinaryWrite(byt)
.Flush()
.Close()
End With

The error follows:
Could not find file "C:\DOCUME~1........\temp\***.tmp"

i want to don't write as file.

pls help to me.

Thanks in advance.
Peter van Ooijen wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Wed, Feb 9 2005 6:28 AM
I do not think that is possible. Given the hoops you need to get it done for a plain file.
Vishal wrote Exported PDF Version
on Mon, Mar 21 2005 1:45 AM
Hi,

Does anyone know how to control version of exported PDF file(s) from CE10. By default, export to pdf generates files in Acrobat 6.0 (or higher) format. Is there any way to specify that the conversion should generate files in Acrobat 5 format?

Thanx,

Vishal
supz wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Wed, Feb 1 2006 5:04 AM
Hi

I am using the same method as above to export my Crsytal Report to PDF file.

This was working until yesterday. All of a sudden I get an error on running the page saying "Cannot find file". This refers to the PDF file I'm trying to export to. I do not get any exception on the rport.Export() statement.

I've checked all permissions on this folder, the ASPNET user has full control of this file folder. What could be wrong??

Also would like to know the correct method of passing parameters to the report when exporting to PDF.

Any help would be appreciated.

Regards,
Supz
Alberto wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Tue, Jun 27 2006 10:11 AM
I´m using Crystal Reports to generate some Invitations un MSWORD format (.doc).
I have done the report and in the preview everything seems ok, but when i Exported it to MSword the generated archive has not the same format. Surprisingly it only happen when i exported it to word, with PDf everything goes well.

I would be very gratefull if you could help me. You can write me to amdiez@indra.es

Thanks and Regards.
pvanooijen wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Tue, Jun 27 2006 2:15 PM
I'm sorry but CR is a closed chapter for me  as I've switched to SQL reporting services. (Which also has nasty quircks).
But I don't know any more about CR than written here.
Mike4QL wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Mon, Aug 14 2006 2:23 AM
There is a lot of useful stuff in here which has helped a lot in coding PDF exports from ASP.net (1.1).

However, I am left with one problem that I cannot find a solution to.

I have a report embedded in a web application.  I use .Export and .Close to create a PDF file which I then download to the user.

This works perfectly on my development machine (XP running vs.net 2003) but when I install it on 2 different W2k based servers CR fails to create the export file.  There are no error messages.  Everything appears to work but the export file never appears.

Any ideas what might cause that?

Mike
pvanooijen wrote re: Exporting from Crystal Reports to PDF, Word, Excel and HTML
on Mon, Sep 4 2006 3:08 AM

Most likely it's a security issue. The asp.net account needs the right to write to the temp directory. By default it does not have any write rights.