如何查看报告

时间:2010-09-16 08:36:53

标签: vb6 crystal-reports

使用VB6&水晶报告9

当我点击按钮时,我想在表单中查看报告..

需要vb6代码帮助......

1 个答案:

答案 0 :(得分:1)

有Crystal Report Viewer Control。右键单击工具箱窗口并选择组件... 然后向下滚动并选择Crystal Report Viewer Control。将它放在表格上并创建一个 设置报告文件路径,报告参数等的方法。

Private Sub mShowReport()

    '...set report file...
    CRViewer1.ReportSource = "C:\Reports\MyReport.rpt"
    '...populate report params...
    '*** insert code here ***
    '...show it...
    CRViewer1.ViewReport

End Sub