![]() |
|
|
|
Thread Tools | Display Modes |
|
|
|
|
#1 |
|
Programmer
Join Date: Oct 2004
Posts: 37
Rep Power: 0
![]() |
Hello:
I知 sending a Crystal Reports痴 report to Word, but a dialog box is opening where user is asking if wish open/save file. I壇 like avoid this dialog emerges and report be displayed directly in screen as user would press open button. I知 attaching code I知 using: string ExportPath = sRuta + "CrystalReport1" + ".doc"; crvReportes.ReportSource = cr; CrystalDecisions.Shared.DiskFileDestinationOptions DiskOpts = new CrystalDecisions.Shared.DiskFileDestinationOptions(); cr.ExportOptions.ExportDestinationType = CrystalDecisions.Shared.ExportDestinationType.DiskFile; cr.ExportOptions.ExportFormatType = CrystalDecisions.Shared.ExportFormatType.WordForWindows; DiskOpts.DiskFileName = ExportPath; cr.ExportOptions.DestinationOptions = DiskOpts; cr.Export(); Response.ClearContent(); Response.ClearHeaders(); Response.ContentType = "application/msword"; Response.WriteFile(ExportPath); Response.Flush(); Response.Close(); System.IO.File.Delete(ExportPath); Where crvReportes is my CrystalReportViewer y cr is my ReoprtDocument I値l thank your help. A.L.
__________________
<span style='color:red'>El Hombre que tiene Amigos, debe mostrarse Amigo...</span> |
|
|
|
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|