VERSION 5.00
Begin VB.Form Form1 
   Caption         =   "Form1"
   ClientHeight    =   4140
   ClientLeft      =   120
   ClientTop       =   450
   ClientWidth     =   6000
   LinkTopic       =   "Form1"
   ScaleHeight     =   4140
   ScaleWidth      =   6000
   StartUpPosition =   3  'Windows Default
   Begin VB.TextBox Text1 
      Height          =   2055
      Left            =   240
      MultiLine       =   -1  'True
      TabIndex        =   3
      Text            =   "Form1.frx":0000
      Top             =   720
      Width           =   5295
   End
   Begin VB.CommandButton Command2 
      Caption         =   "Open With Unicode"
      Height          =   495
      Left            =   3360
      TabIndex        =   2
      Top             =   3600
      Width           =   1215
   End
   Begin VB.CommandButton Command1 
      Caption         =   "Open Normal"
      Height          =   495
      Left            =   4680
      TabIndex        =   1
      Top             =   3600
      Width           =   1215
   End
   Begin VB.Label Label1 
      Caption         =   "IN THE NAME OF GOD"
      Height          =   255
      Left            =   1080
      TabIndex        =   0
      Top             =   120
      Width           =   1935
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'IN THE NAME OF GOD
Option Explicit
Dim Result As String
Private Sub Command1_Click()
Text1.Text = ""
    Open "C:\1.Text" For Input As #1
    Do Until EOF(1)
        Line Input #1, Result
        Text1.Text = Text1.Text & Result & vbCrLf
    Loop
    Close #1
End Sub

Private Sub Command2_Click()
 Text1.Text = ""
    Open "C:\1.Text" For Input As #1
    Do Until EOF(1)
        Line Input #1, Result
        Text1.Text = Text1.Text & StrConv(Result, vbUnicode) & vbCrLf
    Loop
    Close #1
End Sub
