home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form ChildForm
- Caption = "Child Form"
- ClientHeight = 3675
- ClientLeft = 60
- ClientTop = 630
- ClientWidth = 6720
- LinkTopic = "Form1"
- MDIChild = -1 'True
- ScaleHeight = 3675
- ScaleWidth = 6720
- Begin VB.Menu ChildMenu
- Caption = "Child Menu"
- Begin VB.Menu childOpen
- Caption = "Child Open"
- End
- Begin VB.Menu ChildSave
- Caption = "Child Save"
- End
- Begin VB.Menu ChildClose
- Caption = "Child Close"
- End
- End
- Attribute VB_Name = "ChildForm"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub ChildClose_Click()
- MsgBox "Will close Child Form"
- Unload ChildForm
- End Sub
- Private Sub childOpen_Click()
- ChildForm.Show
- End Sub
- Private Sub ChildSave_Click()
- MsgBox "Will save Document"
- Unload ChildForm
- End Sub
-