home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 5 / MasteringVisualBasic5.iso / ch_code / ch04 / forms / forms3.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1997-02-20  |  1.3 KB  |  44 lines

  1. VERSION 5.00
  2. Begin VB.Form Form3 
  3.    Caption         =   "Form3"
  4.    ClientHeight    =   3255
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   4365
  8.    LinkTopic       =   "Form3"
  9.    ScaleHeight     =   3255
  10.    ScaleWidth      =   4365
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.CommandButton HideForm3 
  13.       Caption         =   "Hide This Form"
  14.       Height          =   375
  15.       Left            =   2520
  16.       TabIndex        =   1
  17.       Top             =   2760
  18.       Width           =   1695
  19.    End
  20.    Begin VB.PictureBox Picture1 
  21.       Height          =   2415
  22.       Left            =   120
  23.       Picture         =   "forms3.frx":0000
  24.       ScaleHeight     =   2355
  25.       ScaleWidth      =   4035
  26.       TabIndex        =   0
  27.       Top             =   120
  28.       Width           =   4095
  29.    End
  30. Attribute VB_Name = "Form3"
  31. Attribute VB_GlobalNameSpace = False
  32. Attribute VB_Creatable = False
  33. Attribute VB_PredeclaredId = True
  34. Attribute VB_Exposed = False
  35. Private Sub Form_Activate()
  36.     Form3.Caption = "Form3 Activated"
  37. End Sub
  38. Private Sub Form_Deactivate()
  39.     Form3.Caption = "Form3 Inacive"
  40. End Sub
  41. Private Sub HideForm3_Click()
  42.     HideForm3.Parent.Hide
  43. End Sub
  44.