質問編集履歴
2
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,6 +2,24 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
|
5
|
+
下記のコードに修正をしたらPDFファイルとして保存することができましたが、画面にPDFを表示できないので困っています。
|
6
6
|
|
7
|
+
|
8
|
+
|
9
|
+
GrapeCity.ActiveReports.SectionReport sectionReport = new GrapeCity.ActiveReports.SectionReport();
|
10
|
+
|
11
|
+
XmlReader xtr = XmlReader.Create(Application.StartupPath + @"....\SectionReport1.rpx");
|
12
|
+
|
7
|
-
|
13
|
+
sectionReport.LoadLayout(xtr);
|
14
|
+
|
15
|
+
sectionReport.Run();
|
16
|
+
|
17
|
+
GrapeCity.ActiveReports.Export.Pdf.Section.PdfExport pdfExport = new GrapeCity.ActiveReports.Export.Pdf.Section.PdfExport();
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
pdfExport.Export(sectionReport.Document, Application.StartupPath + "\MyPDF.pdf");
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
どうしたらPDFを表示できますか?
|
1
タグ追加
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|