?? mfrmmain.frm
字號:
VERSION 5.00
Begin VB.MDIForm mfrmMain
BackColor = &H8000000C&
Caption = "圖書管理系統"
ClientHeight = 3090
ClientLeft = 165
ClientTop = 555
ClientWidth = 4680
LinkTopic = "MDIForm1"
StartUpPosition = 2 'CenterScreen
WindowState = 2 'Maximized
Begin VB.Menu M1
Caption = "書目管理"
Index = 1
Begin VB.Menu M1_1
Caption = "新書入庫"
End
Begin VB.Menu M1_3
Caption = "書籍查詢"
End
Begin VB.Menu M1_4
Caption = "書籍種類表維護"
End
End
Begin VB.Menu M2
Caption = "借閱人員管理"
Index = 2
End
Begin VB.Menu M3
Caption = "借閱管理"
Index = 3
End
Begin VB.Menu M4
Caption = "讀者查詢"
Index = 4
End
Begin VB.Menu M5
Caption = "業務統計"
Index = 5
End
Begin VB.Menu M6
Caption = "系統管理"
Index = 6
End
End
Attribute VB_Name = "mfrmMain"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub M1_1_Click()
frmM1_1.Show
End Sub
Private Sub M1_3_Click()
frmM1_3.Show
End Sub
Private Sub M1_4_Click()
frmM1_4.Show
End Sub
Private Sub MDIForm_Load()
'禁用借閱人員管理 功能
M2(2).Enabled = False
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -