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

📄 frmroomsetup1.frm

📁 是我的个人设计站长快让我通过啊
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmROOMSetup1 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "房台设置信息"
   ClientHeight    =   2172
   ClientLeft      =   3336
   ClientTop       =   3636
   ClientWidth     =   6228
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   2172
   ScaleWidth      =   6228
   ShowInTaskbar   =   0   'False
   Begin VB.TextBox txtItem 
      Height          =   276
      Index           =   7
      Left            =   5520
      MaxLength       =   50
      ScrollBars      =   2  'Vertical
      TabIndex        =   16
      Top             =   1920
      Visible         =   0   'False
      Width           =   492
   End
   Begin VB.TextBox txtItem 
      Height          =   276
      Index           =   6
      Left            =   4920
      MaxLength       =   50
      ScrollBars      =   2  'Vertical
      TabIndex        =   15
      Top             =   1920
      Visible         =   0   'False
      Width           =   492
   End
   Begin VB.TextBox txtItem 
      Height          =   276
      Index           =   5
      Left            =   4440
      MaxLength       =   50
      ScrollBars      =   2  'Vertical
      TabIndex        =   12
      Top             =   1920
      Visible         =   0   'False
      Width           =   372
   End
   Begin VB.TextBox txtItem 
      Height          =   270
      Index           =   9
      Left            =   5280
      MaxLength       =   20
      TabIndex        =   11
      Top             =   3480
      Visible         =   0   'False
      Width           =   735
   End
   Begin VB.Frame Frame1 
      Caption         =   "房台设置:"
      Height          =   1452
      Left            =   120
      TabIndex        =   4
      Top             =   120
      Width           =   6012
      Begin VB.TextBox txtItem 
         Height          =   276
         Index           =   4
         Left            =   1200
         Locked          =   -1  'True
         MaxLength       =   10
         ScrollBars      =   2  'Vertical
         TabIndex        =   14
         Top             =   1080
         Width           =   1572
      End
      Begin VB.TextBox txtItem 
         Height          =   276
         Index           =   3
         Left            =   3720
         Locked          =   -1  'True
         MaxLength       =   10
         ScrollBars      =   2  'Vertical
         TabIndex        =   10
         ToolTipText     =   "双击鼠标选择所属类别"
         Top             =   720
         Width           =   2052
      End
      Begin VB.TextBox txtItem 
         Height          =   276
         Index           =   2
         Left            =   1200
         Locked          =   -1  'True
         MaxLength       =   10
         ScrollBars      =   2  'Vertical
         TabIndex        =   9
         ToolTipText     =   "双击鼠标选择所属部门"
         Top             =   720
         Width           =   1572
      End
      Begin VB.TextBox txtItem 
         Height          =   270
         Index           =   0
         Left            =   1200
         MaxLength       =   8
         TabIndex        =   0
         Top             =   360
         Width           =   1572
      End
      Begin VB.TextBox txtItem 
         Height          =   270
         Index           =   1
         Left            =   3720
         MaxLength       =   20
         TabIndex        =   1
         Top             =   360
         Width           =   2052
      End
      Begin VB.Label Label2 
         Caption         =   "容纳人数:"
         Height          =   252
         Index           =   2
         Left            =   360
         TabIndex        =   13
         Top             =   1080
         Width           =   1092
      End
      Begin VB.Label Label2 
         Caption         =   "所属类别:"
         Height          =   252
         Index           =   7
         Left            =   2880
         TabIndex        =   8
         Top             =   720
         Width           =   1092
      End
      Begin VB.Label Label2 
         Caption         =   "所属部门:"
         Height          =   252
         Index           =   5
         Left            =   360
         TabIndex        =   7
         Top             =   720
         Width           =   1092
      End
      Begin VB.Label Label2 
         Caption         =   "房  台  号:"
         Height          =   252
         Index           =   0
         Left            =   360
         TabIndex        =   6
         Top             =   360
         Width           =   1092
      End
      Begin VB.Label Label2 
         Caption         =   "房台名称:"
         Height          =   252
         Index           =   1
         Left            =   2880
         TabIndex        =   5
         Top             =   360
         Width           =   1092
      End
   End
   Begin VB.CommandButton cmdExit 
      Caption         =   "返回 (&X)"
      Height          =   375
      Left            =   3000
      TabIndex        =   3
      Top             =   1680
      Width           =   1215
   End
   Begin VB.CommandButton cmdSave 
      Caption         =   "保存 (&S)"
      Height          =   375
      Left            =   1680
      TabIndex        =   2
      Top             =   1680
      Width           =   1215
   End
End
Attribute VB_Name = "frmROOMSetup1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
'是否改动过记录,ture为改过
Dim mblChange As Boolean
Dim mrc As ADODB.Recordset
Public txtSQL As String
Public flagS As Boolean

Private Sub cmdExit_Click()
    If mblChange And cmdSave.Enabled Then
        If MsgBox("保存当前记录的变化吗?", vbOKCancel + vbExclamation, "警告") = vbOK Then
            '保存
            Call cmdSave_Click
        End If
    End If
    Unload Me
End Sub

Private Sub cmdSave_Click()
    Dim intCount As Integer
    Dim sMeg As String
    Dim MsgText As String
    
  
    For intCount = 0 To 4
        If Trim(txtItem(intCount) & " ") = "" Then
            Select Case intCount
                Case 0
                    sMeg = "房台编号"
                Case 1
                    sMeg = "房台名称"
                Case 2
                    sMeg = "所属部门"
                Case 3
                    sMeg = "所属类别"
                Case 4
                    sMeg = "容纳人数"
            End Select
            sMeg = sMeg & "不能为空!"
            MsgBox sMeg, vbOKOnly + vbExclamation, "警告"
            txtItem(intCount).SetFocus
            Exit Sub
        End If
    Next intCount
    
    For intCount = 0 To 0
        If Not IsNumeric(Trim(txtItem(intCount))) Then
            sMeg = "房台编号"
            sMeg = sMeg & "请输入数字!"
            MsgBox sMeg, vbOKOnly + vbExclamation, "警告"
            txtItem(intCount).SetFocus
            Exit Sub
        End If
    Next intCount
   
    '添加判断是否有相同的ID记录
    If gintROOMmode = 1 Then
        txtSQL = "select * from dm_room where dm ='" & Trim(txtItem(0)) & "'"
        Set mrc = ExecuteSQL(txtSQL, MsgText)
        If mrc.EOF = False Then
            MsgBox "已经存在此房台编号的记录!", vbOKOnly + vbExclamation, "警告"
            txtItem(0).SetFocus
            Exit Sub
        End If
        mrc.Close
    End If
    
    
    '先删除已有记录
    txtSQL = "delete from dm_room where dm ='" & Trim(txtItem(0)) & "'"
    Set mrc = ExecuteSQL(txtSQL, MsgText)
   
    
    '再加入新记录
    txtSQL = "insert dm_room (dm,mc,bmdm,bmmc,lbdm,lbmc,bz,r_sl) values ('"
    For intCount = 0 To 1
        txtSQL = txtSQL & Trim(txtItem(intCount)) & "','"
    Next intCount
    
    txtSQL = txtSQL & Trim(txtItem(5)) & "','"
    txtSQL = txtSQL & Trim(txtItem(2)) & "','"
    txtSQL = txtSQL & Trim(txtItem(6)) & "','"
    txtSQL = txtSQL & Trim(txtItem(3)) & "','"
    txtSQL = txtSQL & Trim(txtItem(7)) & "','"
    txtSQL = txtSQL & Trim(txtItem(4)) & "') "
    
        
    Set mrc = ExecuteSQL(txtSQL, MsgText)
        
    If gintROOMmode = 1 Then
        MsgBox "添加记录成功!", vbOKOnly + vbExclamation, "添加记录"
        For intCount = 0 To 7
            txtItem(intCount) = ""
        Next intCount
        
        mblChange = False
        
        Unload Me
        Unload frmROOMSetup
        frmROOMSetup.txtSQL = "select dm,mc,bmmc,lbmc,r_sl from dm_room where dm <> 'b' and dm <> 'l'"
        frmROOMSetup.Show
        
    ElseIf gintROOMmode = 2 Then
        Unload Me
        Unload frmROOMSetup
        
        frmROOMSetup.txtSQL = "select dm,mc,bmmc,lbmc,r_sl from dm_room where dm <> 'b' and dm <> 'l'"
        frmROOMSetup.Show
    End If
End Sub





Private Sub Combo1_Change()
    mblChange = True
End Sub

Private Sub Combo1_Click()
    If Not flagS Then
        frmWZLBS.Show 1
    End If
End Sub

Private Sub Form_Load()
    Dim intCount As Integer
    Dim MsgText As String
    Dim i As Integer
    Dim mrcc As ADODB.Recordset
  
    If gintROOMmode = 1 Then
        Me.Caption = Me.Caption & "添加"
        For i = 0 To 5
            txtItem(i).Text = ""
        Next i
        txtItem(2) = "双击选择所属部门"
        txtItem(3) = "双击选择所属类别"
    ElseIf gintROOMmode = 2 Then
        Set mrc = ExecuteSQL(txtSQL, MsgText)
        
        If mrc.EOF = False Then
            With mrc
                For intCount = 0 To 1
                    txtItem(intCount) = .Fields(intCount)
                Next intCount
                
                txtItem(5) = .Fields(2)
                txtItem(2) = .Fields(3)
                txtItem(6) = .Fields(4)
                txtItem(3) = .Fields(5)
                txtItem(4) = .Fields(6)
                txtItem(7) = .Fields(7)
                
            End With
            
            mrc.Close
            txtItem(0).Enabled = False
        End If
        
        Me.Caption = Me.Caption & "修改"
    End If
    
    
    'flagS = False
    
    mblChange = False
End Sub
Private Sub Form_Unload(Cancel As Integer)
    gintWZSmode = 0
End Sub
Private Sub txtItem_Change(Index As Integer)
    '有变化设置gblchange
    mblChange = True
End Sub
Private Sub txtItem_DblClick(Index As Integer)
    If Index = 2 Then
        frmBMSETUP.Show 1
    ElseIf Index = 3 Then
        frmLBSETUP.Show 1
    End If
End Sub

Private Sub txtItem_GotFocus(Index As Integer)
    txtItem(Index).SelStart = 0
    txtItem(Index).SelLength = Len(txtItem(Index))
End Sub

Private Sub txtItem_KeyDown(Index As Integer, KeyCode As Integer, Shift As Integer)
    EnterToTab KeyCode
End Sub

⌨️ 快捷键说明

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