home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form2
- Caption = "Form2"
- ClientHeight = 3750
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 4215
- LinkTopic = "Form2"
- ScaleHeight = 3750
- ScaleWidth = 4215
- StartUpPosition = 3 'Windows Default
- Begin VB.CommandButton HideForm
- Caption = "Hide This Form"
- Height = 375
- Left = 2280
- TabIndex = 1
- Top = 3240
- Width = 1815
- End
- Begin VB.PictureBox Picture1
- Height = 2895
- Left = 120
- Picture = "Forms2.frx":0000
- ScaleHeight = 2835
- ScaleWidth = 3915
- TabIndex = 0
- Top = 120
- Width = 3975
- End
- Attribute VB_Name = "Form2"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Form_Activate()
- Form2.Caption = "Form2 Activated"
- End Sub
- Private Sub Form_Deactivate()
- Form2.Caption = "Form2 Inactive"
- End Sub
- Private Sub HideForm_Click()
- Form2.Hide
- End Sub
-