📄 module1.bas
字号:
Attribute VB_Name = "Module1"
Public Document() As New frmChild
Public DocState() As Integer
Public Sub Quit()
Unload MDIForm1
End Sub
Public Sub DisplayModal()
frmModal.Show vbModal
MsgBox "This line immediately follows the Show method"
End Sub
Public Sub DisplayNewChild()
Dim docCount As Integer
docCount = UBound(Document)
ReDim Preserve Document(docCount + 1)
ReDim Preserve DocState(docCount + 1)
Document(docCount + 1).Tag = docCount + 1
Document(docCount + 1).Show
End Sub
Public Sub DisplayModeless()
frmModeless.Show vbModeless
MsgBox "This line immediately follows the Show method"
End Sub
Public Sub FileSave()
MsgBox "对不起,暂缺此项功能!"
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -