home *** CD-ROM | disk | FTP | other *** search
/ Tools / WinSN5.0Ver.iso / PVb5.0 / VB / SAMPLES / PGUIDE / OPTIMIZE / FRMSHOW2.FRM (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1997-01-22  |  2.4 KB  |  85 lines

  1. VERSION 5.00
  2. Begin VB.Form frmShow2 
  3.    Caption         =   "Form2"
  4.    ClientHeight    =   1545
  5.    ClientLeft      =   1740
  6.    ClientTop       =   4425
  7.    ClientWidth     =   4410
  8.    ForeColor       =   &H80000008&
  9.    LinkTopic       =   "Form2"
  10.    LockControls    =   -1  'True
  11.    PaletteMode     =   1  'UseZOrder
  12.    ScaleHeight     =   1545
  13.    ScaleWidth      =   4410
  14.    Begin VB.CommandButton Command3 
  15.       Appearance      =   0  'Flat
  16.       BackColor       =   &H80000005&
  17.       Caption         =   "
  18.  Form1 = Nothing"
  19.       Height          =   495
  20.       Left            =   2895
  21.       TabIndex        =   2
  22.       Top             =   300
  23.       Width           =   1365
  24.    End
  25.    Begin VB.CommandButton Command2 
  26.       Appearance      =   0  'Flat
  27.       BackColor       =   &H80000005&
  28.       Caption         =   "
  29.  Form1"
  30.       Height          =   495
  31.       Left            =   1545
  32.       TabIndex        =   1
  33.       Top             =   300
  34.       Width           =   1215
  35.    End
  36.    Begin VB.CommandButton Command1 
  37.       Appearance      =   0  'Flat
  38.       BackColor       =   &H80000005&
  39.       Caption         =   "
  40.  Form1"
  41.       Height          =   495
  42.       Left            =   135
  43.       TabIndex        =   0
  44.       Top             =   285
  45.       Width           =   1215
  46.    End
  47.    Begin VB.Label lblStatus 
  48.       BackColor       =   &H00FFFFFF&
  49.       BorderStyle     =   1  'Fixed Single
  50.       BeginProperty Font 
  51.          Name            =   "
  52.          Size            =   9
  53.          Charset         =   134
  54.          Weight          =   700
  55.          Underline       =   0   'False
  56.          Italic          =   0   'False
  57.          Strikethrough   =   0   'False
  58.       EndProperty
  59.       Height          =   420
  60.       Left            =   165
  61.       TabIndex        =   3
  62.       Top             =   990
  63.       Width           =   4080
  64.    End
  65. Attribute VB_Name = "frmShow2"
  66. Attribute VB_GlobalNameSpace = False
  67. Attribute VB_Creatable = False
  68. Attribute VB_PredeclaredId = True
  69. Attribute VB_Exposed = False
  70. Option Explicit
  71. Private Sub Command1_Click()
  72.   frmShow1.Show
  73. End Sub
  74. Private Sub Command2_Click()
  75.   Unload frmShow1
  76.   lblStatus.Caption = ""
  77. End Sub
  78. Private Sub Command3_Click()
  79.   Set frmShow1 = Nothing
  80. End Sub
  81. Private Sub Form_Load()
  82.   Me.Left = frmExplore.Width + 600
  83.   Me.Top = (Screen.Height - Me.Height) * 0.9
  84. End Sub
  85.