module1.vb

来自「Samples are organized by chapter, and th」· VB 代码 · 共 18 行

VB
18
字号
Module Global
    Public Main1 As New Form1()
    Public Main2 As New Form1()
    Public Child As New Form2()

    Public Sub Main()
        Main1.Text = "Parent 2"
        Main2.Text = "Parent 1"
        Main1.Show()
        Main2.Show()

        Child.MdiParent = Main2
        Child.Show()

        Application.Run()
    End Sub
End Module

⌨️ 快捷键说明

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