vb制作报表(曾经站位)

前端之家收集整理的这篇文章主要介绍了vb制作报表(曾经站位)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

第一步:下载安装grid++report (下载grid++report)

第二步:创建报表模板。 (如何制作报表模板

第三步:添加应用和部件(部件 :和 引用:)

第四步:用VB将报表连接起来。(报表的位置app.path最方便 )

Dim WithEvents Report As grproLibCtl.GridppReport

Private Sub cmdPre_Click()
    Report.PrintPreview (True)
End Sub

Private Sub cmdPrint_Click()
   '因为报表对象的 Print 方法名与 VB 内部定义有冲突,所以要用中括号括起来
    Report.[Print] (True)
End Sub

Private Sub Command1_Click()
        GRDisplayViewer1.Refresh
End Sub

Private Sub Form_Load()
    '创建报表对象
    Set Report = New grproLibCtl.GridppReport
    '载入报表模板文件
    Report.LoadFromFile ("C:\Users\HAIFANG\Desktop\机房收费系统1.0\byDay.grf") '
    strTxtsql = "select * from allbyday_tableInfo where date='" & Format(Now,"yyyy-mm-dd") & "'"
  '设置数据连接串
    Report.DetailGrid.Recordset.ConnectionString = "FILEDSN=computerChargeSys.dsn;UID=sa;PWD=123456"
    Report.DetailGrid.Recordset.Querysql = strTxtsql
    
    GRDisplayViewer1.Report = Report
    GRDisplayViewer1.Start
    
    
End Sub
 
Private Sub Form_Resize()
    GRDisplayViewer1.Left = 0
    GRDisplayViewer1.Width = Me.Width - 500
End Sub

Private Sub Report_Initialize()

    '设置各个参数的值
                          
    Report.ParameterByName("makedate").AsString = Format$(Date,"yyyy-mm-dd")    '显示开始日期
'    Report.ParameterByName("DateEnd").AsString = Format$(DTPEnd.Value,"yyyy-mm-dd")        '显示结束日期
'
End Sub

在报表GridReport中显示日期时间的改变: http://www.jb51.cc/article/p-bwkaymyg-ts.html
原文链接:https://www.f2er.com/vb/260966.html

猜你在找的VB相关文章