📄 rptzdcx.dsr
字号:
VERSION 5.00
Begin {82282820-C017-11D0-A87C-00A0C90F29FC} rptzdcx
Caption = "账单查询"
ClientHeight = 11010
ClientLeft = 60
ClientTop = 450
ClientWidth = 15240
StartUpPosition = 3 'Windows Default
WindowState = 2 'Maximized
_ExtentX = 26882
_ExtentY = 19420
SectionData = "rptzdcx.dsx":0000
End
Attribute VB_Name = "rptzdcx"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub ActiveReport_ReportStart()
Me.Printer.Orientation = ddOPortrait '??
Me.Printer.PaperSize = vbPRPSA4
' Me.PageSettings.BottomMargin = 1200
' Me.PageSettings.LeftMargin = 900
' Me.PageSettings.RightMargin = 600
' Me.PageSettings.TopMargin = 1200
End Sub
Private Sub Detail_Format()
On Error Resume Next
If Me.dtczdcx.Recordset.RecordCount = 0 Then
MsgBox "这段时间内没有任何账单!", vbInformation, "帐单查询"
Unload rptzdcx
Exit Sub
End If
With Me.dtczdcx.Recordset
Field2 = Fields("cdlb")
Field3 = Format(.Fields("kssj"), "YYYY-MM-DD")
Field4 = Format(.Fields("kssj"), "hh:mm:ss")
Field5 = Format(.Fields("jssj"), "YYYY-MM-DD")
Field6 = Format(.Fields("jssj"), "hh:mm:ss")
Field7 = Format(.Fields("ssje"), kfmtc)
Select Case Val(.Fields("jffs"))
Case 0
Field8 = "现金"
Case 1
Field8 = "会员"
Case 2
Field8 = "信用卡"
Case 3
Field8 = "支票"
Case 4
Field8 = "免单"
Case 5
Field8 = "挂账"
End Select
Field9 = Fields("kh")
Field10 = Fields("dqrs")
End With
End Sub
Private Sub PageHeader_Format()
Label2 = "帐 单 号"
Label3 = "开始日期"
Label4 = "开始时间"
Label5 = "结束日期"
Label6 = "结束时间"
Label7 = "实收金额"
Label8 = "状 态"
Label9 = "客 户 名"
Label10 = "人 数"
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -