home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 6 / mastvb6.iso / ch_code / ch04 / pvars / form2.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1996-03-08  |  1.1 KB  |  39 lines

  1. VERSION 5.00
  2. Begin VB.Form Form2 
  3.    Caption         =   "Form2"
  4.    ClientHeight    =   1500
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   4455
  8.    LinkTopic       =   "Form2"
  9.    ScaleHeight     =   1500
  10.    ScaleWidth      =   4455
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.CommandButton Command1 
  13.       Caption         =   "Set Customer Name"
  14.       BeginProperty Font 
  15.          Name            =   "Verdana"
  16.          Size            =   9.75
  17.          Charset         =   0
  18.          Weight          =   400
  19.          Underline       =   0   'False
  20.          Italic          =   0   'False
  21.          Strikethrough   =   0   'False
  22.       EndProperty
  23.       Height          =   375
  24.       Left            =   1170
  25.       TabIndex        =   0
  26.       Top             =   495
  27.       Width           =   2220
  28.    End
  29. Attribute VB_Name = "Form2"
  30. Attribute VB_GlobalNameSpace = False
  31. Attribute VB_Creatable = False
  32. Attribute VB_PredeclaredId = True
  33. Attribute VB_Exposed = False
  34. Public FName, LName
  35. Private Sub Command1_Click()
  36.     LName = "Houghes"
  37.     FName = "Kevin"
  38. End Sub
  39.