mdiform1.frm

来自「请假销假的管理系统」· FRM 代码 · 共 67 行

FRM
67
字号
VERSION 5.00
Begin VB.MDIForm MDIForm1 
   BackColor       =   &H8000000C&
   Caption         =   "请假销假管理"
   ClientHeight    =   3090
   ClientLeft      =   165
   ClientTop       =   855
   ClientWidth     =   4680
   Icon            =   "MDIForm1.frx":0000
   LinkTopic       =   "MDIForm1"
   StartUpPosition =   3  '窗口缺省
   WindowState     =   2  'Maximized
   Begin VB.Menu mun1 
      Caption         =   "请假"
   End
   Begin VB.Menu mun2 
      Caption         =   "销假"
   End
   Begin VB.Menu mun3 
      Caption         =   "查询"
   End
   Begin VB.Menu mun4 
      Caption         =   "统计"
   End
   Begin VB.Menu mun6 
      Caption         =   "打印"
      Begin VB.Menu mun61 
         Caption         =   "请假情况"
      End
   End
   Begin VB.Menu mun5 
      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 MDIForm_Unload(Cancel As Integer)
  End
End Sub

Private Sub mun1_Click()
  Form1.Show
End Sub

Private Sub mun2_Click()
 Form2.Show
End Sub

Private Sub mun3_Click()
 Form3.Show
End Sub

Private Sub mun4_Click()
  Form4.Show
End Sub

Private Sub mun5_Click()
  End
End Sub

Private Sub mun61_Click()
  frmriqi.Show
End Sub

⌨️ 快捷键说明

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