📄 frmcheckout2.frm
字号:
VERSION 5.00
Begin VB.Form frmCheckout2
BackColor = &H00C0C0FF&
Caption = "结算信息查询"
ClientHeight = 2745
ClientLeft = 60
ClientTop = 345
ClientWidth = 5355
LinkTopic = "Form12"
ScaleHeight = 2745
ScaleWidth = 5355
StartUpPosition = 3 '窗口缺省
Begin VB.TextBox txtItem
Height = 375
Index = 1
Left = 1560
TabIndex = 11
Top = 720
Width = 3495
End
Begin VB.CheckBox chkItem
BackColor = &H00C0C0FF&
Caption = "顾客姓名:"
Height = 255
Index = 0
Left = 240
TabIndex = 10
Top = 240
Width = 1215
End
Begin VB.CheckBox chkItem
BackColor = &H00C0C0FF&
Caption = "房间编号:"
Height = 255
Index = 1
Left = 240
TabIndex = 9
Top = 720
Width = 1215
End
Begin VB.CheckBox chkItem
BackColor = &H00C0C0FF&
Caption = "入住时间:"
Height = 255
Index = 2
Left = 240
TabIndex = 8
Top = 1320
Width = 1215
End
Begin VB.TextBox txtItem
Height = 375
Index = 0
Left = 1560
TabIndex = 7
Top = 240
Width = 3495
End
Begin VB.Frame Frame1
BackColor = &H00C0C0FF&
Height = 855
Left = 1560
TabIndex = 2
Top = 1200
Width = 3495
Begin VB.ComboBox cboDay
Height = 300
Left = 2280
TabIndex = 13
Top = 360
Width = 855
End
Begin VB.ComboBox cboMonth
Height = 300
Left = 1200
TabIndex = 12
Top = 360
Width = 855
End
Begin VB.ComboBox cboYear
Height = 300
Index = 0
Left = 120
TabIndex = 3
Top = 360
Width = 855
End
Begin VB.Label Label1
BackColor = &H00C0C0FF&
Caption = "年"
Height = 255
Left = 960
TabIndex = 6
Top = 360
Width = 255
End
Begin VB.Label Label2
BackColor = &H00C0C0FF&
Caption = "月"
Height = 255
Left = 2040
TabIndex = 5
Top = 360
Width = 135
End
Begin VB.Label Label3
BackColor = &H00C0C0FF&
Caption = "日"
Height = 255
Left = 3120
TabIndex = 4
Top = 360
Width = 255
End
End
Begin VB.CommandButton cmdOK
BackColor = &H00C0C0FF&
Caption = "确定(&O)"
Height = 375
Left = 1200
Style = 1 'Graphical
TabIndex = 1
Top = 2160
Width = 1215
End
Begin VB.CommandButton cmdExit
BackColor = &H00C0C0FF&
Caption = "取消(&X)"
Height = 375
Left = 2880
Style = 1 'Graphical
TabIndex = 0
Top = 2160
Width = 1215
End
End
Attribute VB_Name = "frmCheckout2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
'用于传递查询块
Private Sub chkItem_Click(Index As Integer)
If Index = 2 Then
cboYear(0).SetFocus
Else
txtItem(Index).SetFocus
End If
End Sub
Private Sub cmdExit_Click()
Me.Hide
End Sub
Private Sub cmdOK_Click()
Dim dBeginDate As String
Dim sQSql As String
If chkItem(0).Value = vbChecked Then
sQSql = " customname = '" & Trim(txtItem(0) & " ") & "'"
End If
If chkItem(1).Value = vbChecked Then
If Trim(sQSql & " ") = "" Then
sQSql = " roomno ='" & Trim(txtItem(1) & " ") & "'"
Else
sQSql = sQSql & " and roomno ='" & Trim(txtItem(1) & " ") & "'"
End If
End If
If chkItem(2).Value = vbChecked Then
dBeginDate = Format(CDate(cboYear(0) & "-" & cboMonth & "-" & cboDay), "yyyy-mm-dd")
If Trim(sQSql & " ") = "" Then
sQSql = " indate ='" & dBeginDate & "'"
Else
sQSql = sQSql & " and indate ='" & dBeginDate & "'"
End If
End If
If Trim(sQSql) = "" Then
MsgBox "请设置查询条件!", vbOKOnly + vbExclamation, "警告"
Exit Sub
Else
If flagBedit Then
Unload frmCheckout
End If
frmCheckout.txtSQL = "select * from bookin where ammount <> '0' and " & sQSql
frmCheckout.Show
frmCheckout.Command2.Enabled = False
frmCheckout.Command3.Enabled = False
End If
Me.Hide
End Sub
Private Sub Command1_Click()
End Sub
Private Sub Form_Load()
Dim i As Integer
Dim j As Integer
Dim sSql As String
Dim txtSQL As String
Dim MsgText As String
Dim mrc As ADODB.Recordset
txtSQL = "select distinct datepart(yy,indate) from bookin where ammount <> '0'"
Set mrc = ExecuteSQL(txtSQL, MsgText)
If mrc.EOF = False Then
With mrc
Do While Not .EOF
cboYear(0).AddItem .Fields(0)
.MoveNext
Loop
End With
cboYear(0).ListIndex = 0
For j = 1 To 12
cboMonth.AddItem j
Next j
cboMonth.Text = Month(Now())
For j = 1 To 31
cboDay.AddItem j
Next j
cboDay.Text = Day(Now())
Else
cmdOK.Enabled = False
End If
mrc.Close
End Sub
Private Sub lblitem_Click(Index As Integer)
chkItem(Index).Value = vbChecked
End Sub
Private Sub txtItem_GotFocus(Index As Integer)
txtItem(Index).SelStart = 0
txtItem(Index).SelLength = Len(txtItem(Index))
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -