home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frm3_4_6
- Caption = "Convertor"
- ClientHeight = 1305
- ClientLeft = 1095
- ClientTop = 1485
- ClientWidth = 3075
- 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 = 1305
- ScaleWidth = 3075
- Begin VB.TextBox txtMile
- Height = 285
- Left = 1200
- TabIndex = 1
- Text = "0"
- Top = 240
- Width = 1575
- End
- Begin VB.TextBox txtFurlong
- Height = 285
- Left = 1200
- TabIndex = 0
- Text = "0"
- Top = 840
- Width = 1575
- End
- Begin VB.Label lblFurlong
- Caption = "Furlongs"
- Height = 255
- Left = 240
- TabIndex = 3
- Top = 840
- Width = 735
- End
- Begin VB.Label lblMile
- Caption = "Miles"
- Height = 252
- Left = 600
- TabIndex = 2
- Top = 240
- Width = 492
- End
- Attribute VB_Name = "frm3_4_6"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub txtMile_LostFocus()
- txtFurlong.Text = Str(8 * Val(txtMile.Text))
- End Sub
- Private Sub txtFurlong_LostFocus()
- txtMile.Text = Str(Val(txtFurlong.Text / 8))
- End Sub
-