home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form ChildForm
- Caption = "Form1"
- ClientHeight = 2550
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 5055
- LinkTopic = "Form1"
- MDIChild = -1 'True
- ScaleHeight = 2550
- ScaleWidth = 5055
- Attribute VB_Name = "ChildForm"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Form_GotFocus()
- Me.Caption = "I've been activated!"
- End Sub
- Private Sub Form_LostFocus()
- Me.Caption = "Document " & Format(Me.Tag)
- End Sub
-