📄 mdiform1.frm
字号:
VERSION 5.00
Begin VB.MDIForm MDIForm1
BackColor = &H8000000C&
Caption = "MDIForm1"
ClientHeight = 8070
ClientLeft = 45
ClientTop = 570
ClientWidth = 10365
LinkTopic = "MDIForm1"
StartUpPosition = 2 'CenterScreen
Begin VB.Menu aaa
Caption = "111"
Begin VB.Menu a11
Caption = "Sub1"
End
End
Begin VB.Menu bbb
Caption = "222"
Begin VB.Menu a12
Caption = "Sub2"
End
End
Begin VB.Menu ccc
Caption = "333"
Begin VB.Menu a13
Caption = "Sub3"
End
End
Begin VB.Menu ddd
Caption = "444"
Begin VB.Menu a4
Caption = "Sub4"
End
End
Begin VB.Menu eee
Caption = "555"
Begin VB.Menu a5
Caption = "Sub5"
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 MDIForm_Load()
On Error GoTo errhandle
Form1.Show
Dim strPath As String
strPath = App.Path + "\SkinRes.dll"
skin.BeginHook strPath
SetForms
Exit Sub
errhandle:
MsgBox Err.Description
Err.Clear
End Sub
Private Sub MDIForm_Unload(Cancel As Integer)
On Error GoTo errhandle
skin.EndHook
Exit Sub
errhandle:
MsgBox Err.Description
Err.Clear
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -