home *** CD-ROM | disk | FTP | other *** search
-
- Public Document() As New frmNotePad ' Array of child form objects
-
- Sub FileNew()
-
- Dim fIndex As Integer
-
- ' Find the next available index and show the child form.
- fIndex = FindFreeIndex()
- Document(fIndex).Tag = fIndex
- Document(fIndex).Caption = "Untitled:" & fIndex
- Document(fIndex).Show
- ' Make sure the toolbar edit buttons are visible.
- frmMDI.imgCutButton.Visible = True
- frmMDI.imgCopyButton.Visible = True
- frmMDI.imgPasteButton.Visible = True
-
- End Sub
-