Can we export data of reports into other format like in
world doc etc?

Answers were Sorted based on User's Feedback



Can we export data of reports into other format like in world doc etc?..

Answer / shiva

yes ..u can..not only in word but also in sevaral formats
like pdf,excel..etc..u can go to file in the menu in that u
have this option

Is This Answer Correct ?    4 Yes 2 No

Can we export data of reports into other format like in world doc etc?..

Answer / vijay yadav

Yes we can export data into word, excel, pdf and other
formats.

Is This Answer Correct ?    1 Yes 1 No

Can we export data of reports into other format like in world doc etc?..

Answer / hema

Reports can be exported to a number offormats, such as
spreadsheet, word processor, HTML, ODBC, and common data
interchange formats.
Go to File->Export. There are two sub menus, Export
Report,Report Export Options.

This can be achievable through coding.

ExportDestinationType eExportDestinationType =
ExportDestinationType.DiskFile;
ExportFormatType eExportFormatType =
ExportFormatType.PortableDocFormat;
ExportOptions eExportOptions =
ExportOptions.CreateDiskFileDestinationOptions;

Is This Answer Correct ?    2 Yes 3 No

Can we export data of reports into other format like in world doc etc?..

Answer / arvind gupta

Yes through Export.Dll , during privew section

Is This Answer Correct ?    0 Yes 1 No

Can we export data of reports into other format like in world doc etc?..

Answer / kamalakannan.a

Sure.We can save the crystal report as many formats.There
are .Doc,,xsl,.pdf and etc.

The sample code i used in my project is given below.

case "pdf":
{
//setting disk file name

crDiskFileDestinationOptions.DiskFileName =
ExportPath + filename;
//setting destination type in our case
disk file

crExportOptions.DestinationOptions =
crDiskFileDestinationOptions;
//setting export format type

crExportOptions.ExportDestinationType =
ExportDestinationType.DiskFile;
//setting previously defined
destination opions to our input report document

crExportOptions.ExportFormatType =
ExportFormatType.PortableDocFormat;
break;
}

case "xls":
{
//setting disk file name

crDiskFileDestinationOptions.DiskFileName =
ExportPath + filename;
//setting destination type in our case
disk file

crExportOptions.ExportDestinationType =
ExportDestinationType.DiskFile;
//setting export format type

crExportOptions.ExportFormatType =
ExportFormatType.Excel;
//setting previously defined
destination opions to our input report document

crExportOptions.DestinationOptions =
crDiskFileDestinationOptions;
break;
}


Kamal...

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More Crystal Reports Interview Questions

What are the advantages or disadvantages of using Crystal Reports in a Windows Forms application as opposed to say rolling our own reports as HTML and displaying them in the Internet Explorer control?

2 Answers  


How to conditionally suppress a field based on whether a page number is odd or even?

3 Answers  


Can we use Crystal report as a stand-alone application?

4 Answers   Covansys,


How can i normalize a Crystal Report..??

0 Answers   HCL,


hi... i've two crystal reports one is in D: drive name employee.rpt with 5 textobject and another report is in E: drive name employee.rpt with 15 textobject... now i want to write a program to overwrite the D drives report with E drives reports i.e i want to replace the 5 textobject with 15 textobject.. overwriting the reports while it is executing .. is there any code for it please help me.. its urgent..

0 Answers  






How to present data from Crystal Reports on to form?

3 Answers  


Can we use our own SQL for creating a report?

5 Answers  


How to write a formula to change a font based upon data ?

2 Answers  


How to add Crystal Reports(Standalone) to my VB.NET project

2 Answers  


Explain reporter footer contents are move depend the page footer values?

0 Answers  


Are there any limitations in crystal reports?

22 Answers  


How do you add a subreport to a report in Crystal Reports?

0 Answers   MindCracker,


Categories