CPROG2YES
CPROG2YES
End Sub
Application.Exit()
End Sub
End Sub
‘Makes the windows cascade
Private Sub CascadeToolStripMenuItem_Click(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles CascadeToolStripMenuItem.Click
LayoutMdi(MdiLayout.Cascade)
End Sub
End Sub
End Sub
End Sub
‘Allows to open new window forms
Private Sub NewFormToolStripMenuItem_Click(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles NewFormToolStripMenuItem.Click
Dim ChildForm As New System.Windows.Forms.Form
ChildForm.MdiParent = Me
'
m_ChildFormNumber += 1
ChildForm.Text = "Window " & m_ChildFormNumber
ChildForm.Show()
End Sub
End Class
End Sub
End Sub
Me.FontDialog1.ShowDialog()
Me.RichTextBox1.Font = Me.FontDialog1.Font
End Sub