⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 yudingchaxun.frm

📁 VB客房管理系统全套(带源码)顾客可以用电话或上网注册的方式预定。其方式不同
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmgerenyuding2 
   Caption         =   "个人预定查询"
   ClientHeight    =   3540
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   6405
   LinkTopic       =   "Form2"
   ScaleHeight     =   3540
   ScaleWidth      =   6405
   StartUpPosition =   3  '窗口缺省
   Begin VB.CommandButton cmdExit 
      Caption         =   "取消"
      Height          =   495
      Left            =   3600
      TabIndex        =   11
      Top             =   2640
      Width           =   1215
   End
   Begin VB.CommandButton cmdOk 
      Caption         =   "保存"
      Height          =   495
      Left            =   1440
      TabIndex        =   10
      Top             =   2640
      Width           =   1215
   End
   Begin VB.Frame Frame1 
      Caption         =   "Frame1"
      Height          =   735
      Left            =   1560
      TabIndex        =   6
      Top             =   1200
      Width           =   3615
      Begin VB.ComboBox cboDay 
         Height          =   300
         Left            =   2400
         TabIndex        =   9
         Text            =   "cboDay"
         Top             =   240
         Width           =   855
      End
      Begin VB.ComboBox cboMonth 
         Height          =   300
         Index           =   0
         Left            =   1320
         TabIndex        =   8
         Text            =   "cboMonth"
         Top             =   240
         Width           =   735
      End
      Begin VB.ComboBox cboYear 
         Height          =   300
         Index           =   0
         Left            =   120
         TabIndex        =   7
         Text            =   "cboYear"
         Top             =   240
         Width           =   855
      End
   End
   Begin VB.TextBox txtItem 
      Height          =   270
      Index           =   1
      Left            =   1680
      TabIndex        =   5
      Top             =   720
      Width           =   2535
   End
   Begin VB.TextBox txtItem 
      Height          =   270
      Index           =   0
      Left            =   1680
      TabIndex        =   4
      Top             =   360
      Width           =   2535
   End
   Begin VB.CheckBox chkItem 
      Caption         =   "Check1"
      Height          =   375
      Index           =   2
      Left            =   120
      TabIndex        =   2
      Top             =   1080
      Width           =   255
   End
   Begin VB.CheckBox chkItem 
      Caption         =   "Check1"
      Height          =   375
      Index           =   1
      Left            =   120
      TabIndex        =   1
      Top             =   720
      Width           =   255
   End
   Begin VB.CheckBox chkItem 
      Caption         =   "Check1"
      Height          =   375
      Index           =   0
      Left            =   120
      TabIndex        =   0
      Top             =   240
      Width           =   255
   End
   Begin VB.Label Label1 
      Caption         =   "房间编号"
      Height          =   255
      Index           =   2
      Left            =   720
      TabIndex        =   13
      Top             =   720
      Width           =   855
   End
   Begin VB.Label Label1 
      Caption         =   "入住时间"
      Height          =   255
      Index           =   1
      Left            =   600
      TabIndex        =   12
      Top             =   1200
      Width           =   975
   End
   Begin VB.Label Label1 
      Caption         =   "顾客姓名"
      Height          =   255
      Index           =   0
      Left            =   600
      TabIndex        =   3
      Top             =   360
      Width           =   975
   End
End
Attribute VB_Name = "frmgerenyuding2"
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(0) & "-" & 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 flagYedit Then
            Unload frmBookin
        End If
        frmgerenyuding.txtSQL = "select bookno,customname,customID,roomno,indate,discount,inmemo,dymoney,ydtime,tianshu from bookin where ammount = '0' and " & sQSql
        frmgerenyuding.Show
    End If
    Me.Hide
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(0).AddItem j
        Next j
        cboMonth(0).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


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -