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

📄 mdiform1.frm

📁 酒店管理系统
💻 FRM
字号:
VERSION 5.00
Begin VB.MDIForm MDIForm1 
   BackColor       =   &H00C0FFC0&
   Caption         =   "酒店管理系统"
   ClientHeight    =   3090
   ClientLeft      =   165
   ClientTop       =   855
   ClientWidth     =   4680
   LinkTopic       =   "MDIForm1"
   StartUpPosition =   3  '窗口缺省
   WindowState     =   2  'Maximized
   Begin VB.Menu system 
      Caption         =   "系统管理"
      Begin VB.Menu add_user 
         Caption         =   "新增用户"
      End
      Begin VB.Menu modify_pw 
         Caption         =   "修改密码"
      End
      Begin VB.Menu exit 
         Caption         =   "退出系统"
      End
   End
   Begin VB.Menu client 
      Caption         =   "客人入住"
      Begin VB.Menu only_client 
         Caption         =   "散客入住"
      End
      Begin VB.Menu double_client 
         Caption         =   "团队入住"
      End
   End
   Begin VB.Menu check 
      Caption         =   "客人信息查询"
   End
   Begin VB.Menu rs 
      Caption         =   "人事管理"
      Begin VB.Menu khts 
         Caption         =   "客户投诉管理"
      End
      Begin VB.Menu zbgl 
         Caption         =   "值班管理"
      End
   End
   Begin VB.Menu about 
      Caption         =   "关于"
   End
End
Attribute VB_Name = "MDIForm1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub about_Click()
frmAbout.Show
End Sub

Private Sub add_user_Click()
frmadduser.Show
End Sub


Private Sub double_check_Click()
frmfind_double.Show
End Sub

Private Sub check_Click()
frmfind.Show
End Sub

Private Sub double_client_Click()
frmdouble_client.Show
End Sub

Private Sub exit_Click()
Unload Me
End Sub

Private Sub khts_Click()
frmkhts.Show
End Sub

Private Sub MDIForm_Load()
frmdata = False
find = False
End Sub

Private Sub modify_pw_Click()
frmchangepwd.Show
End Sub

Private Sub only_check_Click()
frmfind.Show
End Sub

Private Sub only_client_Click()
frmonly_client.Show
End Sub

Private Sub zbgl_Click()
frmzhiban.Show
End Sub

⌨️ 快捷键说明

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