請問VB(不是.NET)要如何使用crystal report
可否教教我呢?
2005-09-22 11:18:29 · 1 個解答 · 發問者 Anonymous in 電腦與網際網路 ➔ 程式設計
1.先用 Crystal report desinger 設計好你的報表, 並存檔(.rpt 檔)
2.在你的 VB Form 中加入一個 crystal report control (crystl32.ocx)
3.設定 control 的屬性, 如下:
crtReport.Reset
crtReport.ReportFileName = "reportfilename.rpt"
crtReport.WindowShowPrintBtn = True
crtReport.WindowShowPrintSetupBtn = True
crtReport.WindowWidth = 800
crtReport.WindowHeight = 600
crtReport.WindowTop = 0
crtReport.WindowLeft = 0
crtReport.BoundReportFooter = True
crtReport.ReportTitle = "ABC Report"
crtReport.ParameterFields(0) = "inStmDate;08/01/2005;true"
crtReport.ParameterFields(1) = "inDataMonth;200508;true"
crtReport.Destination = 0
crtReport.Action = 1
有些參數設定並非必要, 僅供參考!
2005-09-23 07:51:30 · answer #1 · answered by calvin 1 · 0⤊ 0⤋