home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmTitle
- Caption = "Letter Address"
- ClientHeight = 2220
- ClientLeft = 1095
- ClientTop = 1485
- ClientWidth = 5220
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- LinkTopic = "Form1"
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 2220
- ScaleWidth = 5220
- Begin VB.TextBox txtDisplay
- Height = 375
- Left = 2160
- TabIndex = 5
- Top = 1680
- Width = 2895
- End
- Begin VB.CommandButton cmdDisplay
- Caption = "Display Full Name"
- Height = 375
- Left = 2760
- TabIndex = 4
- Top = 960
- Width = 1815
- End
- Begin VB.TextBox txtName
- Height = 285
- Left = 2520
- TabIndex = 1
- Top = 360
- Width = 2535
- End
- Begin VB.ComboBox cboTitle
- Height = 1545
- ItemData = "11-1-3.frx":0000
- Left = 120
- List = "11-1-3.frx":0013
- Style = 1 'Simple Combo
- TabIndex = 0
- Top = 360
- Width = 1935
- End
- Begin VB.Label lblName
- Caption = "Name"
- Height = 255
- Left = 2520
- TabIndex = 3
- Top = 120
- Width = 615
- End
- Begin VB.Label lblTitle
- Caption = "Title"
- Height = 255
- Left = 120
- TabIndex = 2
- Top = 120
- Width = 495
- End
- Attribute VB_Name = "frmTitle"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub cmdDisplay_Click()
- txtDisplay.Text = cboTitle.Text & " " & txtName.Text
- End Sub
-