home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form3
- Caption = "Form3"
- ClientHeight = 3255
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 4365
- LinkTopic = "Form3"
- ScaleHeight = 3255
- ScaleWidth = 4365
- StartUpPosition = 3 'Windows Default
- Begin VB.CommandButton HideForm3
- Caption = "Hide This Form"
- Height = 375
- Left = 2520
- TabIndex = 1
- Top = 2760
- Width = 1695
- End
- Begin VB.PictureBox Picture1
- Height = 2415
- Left = 120
- Picture = "forms3.frx":0000
- ScaleHeight = 2355
- ScaleWidth = 4035
- TabIndex = 0
- Top = 120
- Width = 4095
- End
- Attribute VB_Name = "Form3"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Form_Activate()
- Form3.Caption = "Form3 Activated"
- End Sub
- Private Sub Form_Deactivate()
- Form3.Caption = "Form3 Inacive"
- End Sub
- Private Sub HideForm3_Click()
- HideForm3.Parent.Hide
- End Sub
-