VB中使用Grid++報表

來源:互聯網
上載者:User

         前段時間做機房收費系統的時候,在周結賬單的報表中添加表單中選定的時間段要在報表中顯示,在這一點上一直沒有弄清楚。今天無意中從一些代碼中弄明白了。主要是在表單中動態添加一個靜態文字框來顯示我們需要的文字。代碼和主要的表單介面如下,供大家一起研究學習

Option ExplicitDim Report As grproLibCtl.GridppReportPrivate Sub Rshow()    Dim strSQL As String    Dim strMsg As String    strSQL = "select * from checkweek_info where date<='" & Format(cboTimeStart.Text, "yyyy-mm-dd") & "' and date<='" & Format(cboTimeEnd.Text, "yyyy-mm-dd") & "'"        Set Report = New grproLibCtl.GridppReport    Report.LoadFromFile (App.Path & "\checkWeek.grf")   '載入模版    Report.DetailGrid.Recordset.ConnectionString = ConnString   '資料來源    Report.DetailGrid.Recordset.QuerySQL = strSQL               '通過SELECT查詢建立記錄集            '=================報表中自訂控制項================    Dim Reportheader As IGRReportHeader    Dim StaticBox As IGRStaticBox        Set Reportheader = Report.InsertReportHeader        '插入一個靜態文字框,顯示需要顯示的文字    Set StaticBox = Reportheader.Controls.Add(grctStaticBox).AsStaticBox    StaticBox.Text = cboTimeStart.Text & "   至   " & cboTimeEnd.Text    StaticBox.Width = 500    '======================================================        GRDisplayViewer1.Report = Report    GRDisplayViewer1.StartEnd SubPrivate Sub cmdRefresh_Click()    GRDisplayViewer1.Refresh     '重新整理End SubPrivate Sub cmdView_Click()    Report.PrintPreview (True)     '預覽列印End SubPrivate Sub cmdPrint_Click()    Report.[Print] (True)        '列印End Sub

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.