home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 6 / mastvb6.iso / ch_code / ch04 / forms / forms3.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1996-03-07  |  1.3 KB  |  45 lines

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