home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmResults
- Appearance = 0 'Flat
- BackColor = &H80000005&
- Caption = "Conversion Results"
- ClientHeight = 3990
- ClientLeft = 2970
- ClientTop = 2400
- ClientWidth = 6030
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- LinkTopic = "Form2"
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 3990
- ScaleWidth = 6030
- Visible = 0 'False
- Begin VB.TextBox edtResults
- Appearance = 0 'Flat
- Height = 3855
- Left = 60
- MultiLine = -1 'True
- ScrollBars = 2 'Vertical
- TabIndex = 0
- Top = 60
- Width = 5895
- End
- Begin VB.Menu mnuCopy
- Caption = "Copy"
- End
- Attribute VB_Name = "frmResults"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- ' Copyright (c) 1996 by Desaware
- ' Part of the Desaware API Toolkit
- ' All Rights Reserved
- Option Explicit
- Dim CRLF
- Private Sub Form_Load()
- edtResults.Text = CvtResult$
- End Sub
- Private Sub Form_Resize()
- ' Position text box to fill the form.
- edtResults.Move 0, 0, ScaleWidth, ScaleHeight
- End Sub
- Private Sub mnuCopy_Click()
- Clipboard.SetText edtResults.Text
- End Sub
-