home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form2
- Caption = "Form2"
- ClientHeight = 1500
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 4455
- LinkTopic = "Form2"
- ScaleHeight = 1500
- ScaleWidth = 4455
- StartUpPosition = 3 'Windows Default
- Begin VB.CommandButton Command1
- Caption = "Set Customer Name"
- BeginProperty Font
- Name = "Verdana"
- Size = 9.75
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 375
- Left = 1170
- TabIndex = 0
- Top = 495
- Width = 2220
- End
- Attribute VB_Name = "Form2"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Public FName, LName
- Private Sub Command1_Click()
- LName = "Houghes"
- FName = "Kevin"
- End Sub
-