Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在使用 C# windows 应用程序。现在想通过单击按钮将生成的水晶报告转换为用户指定位置的 *.pdf 格式。
我们已经有导出按钮将报告转换为多个选项。但现在我想通过单击按钮将报告转换为 *.pdf 格式
请任何人帮助我。
您可以使用以下方法来执行此操作
Report.ExportToDisk(ExportFormatType.PortableDocFormat, "<path>/<name for pdf file>");
请参考以下链接
C# Crystal Reports 导出为 Pdf
使用 Crystal Report 导出为 pdf 的 C# 代码