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

📄 mdiform1.frm

📁 员工信息管理系统
💻 FRM
字号:
VERSION 5.00
Begin VB.MDIForm MDIForm1 
   BackColor       =   &H00E0E0E0&
   Caption         =   "MDIForm1"
   ClientHeight    =   3600
   ClientLeft      =   165
   ClientTop       =   855
   ClientWidth     =   6285
   LinkTopic       =   "MDIForm1"
   StartUpPosition =   3  '窗口缺省
   Begin VB.Menu munAdd 
      Caption         =   "新增(&A)"
      Begin VB.Menu munEmpAdd 
         Caption         =   "新增员工信息"
      End
      Begin VB.Menu munCheckAdd 
         Caption         =   "新增员工考勤"
      End
   End
   Begin VB.Menu munModi 
      Caption         =   "编辑(&E)"
      Begin VB.Menu munEmpModi 
         Caption         =   "员工信息编辑"
      End
      Begin VB.Menu mnuCheckModi 
         Caption         =   "员工考勤编辑"
      End
   End
   Begin VB.Menu munQuery 
      Caption         =   "查询(&F)"
      Begin VB.Menu munEmpQuery 
         Caption         =   "员工信息查询"
      End
      Begin VB.Menu munCheckQuery 
         Caption         =   "员工考勤查询"
      End
   End
   Begin VB.Menu munSystemInfor 
      Caption         =   "系统(&P)"
      Begin VB.Menu munPwdManager 
         Caption         =   "密码管理"
      End
      Begin VB.Menu munUserManager 
         Caption         =   "用户管理"
      End
      Begin VB.Menu munExit 
         Caption         =   "退出"
      End
   End
   Begin VB.Menu munGuanYu 
      Caption         =   "帮助(&H)"
      Begin VB.Menu mnuGuanyu 
         Caption         =   "关于"
      End
   End
End
Attribute VB_Name = "MDIForm1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub mnuCheckModi_Click()
frmCheckSel.Show
End Sub

Private Sub mnuGuanyu_Click()
frmGuanyu.Show
End Sub

Private Sub munCheckAdd_Click()
frmCheckAdd.Show
End Sub

Private Sub munCheckQuery_Click()
frmCheckInfo2.Show
End Sub

Private Sub munEmpAdd_Click()
frmEmpAdd.Show
End Sub

Private Sub munEmpModi_Click()
frmEmpInfo.Show
End Sub

Private Sub munEmpQuery_Click()
frmEmpInfo2.Show
End Sub

Private Sub munExit_Click()

   Unload Me

End Sub

Private Sub munPwdManager_Click()
frmPwdChange.Show
End Sub

Private Sub munUserManager_Click()
frmUserManger.Show
End Sub

⌨️ 快捷键说明

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