Option Explicit
Dim pathname As String, fso As Object, tso As Object, tempfile As String
Dim linecounter As Integer, tempvar, i As Integer
Sub readtextFile()
With Application.FileDialog(msoFileDialogFolderPicker)
.Show
.Title = "Select .txt File to read"
pathname = .SelectedItems(1)
End With
Set fso = CreateObject("Scripting.FileSystemObject")
tempfile = pathname & "\data.txt"
Set tso = fso.getFile(tempfile).OpenAsTextStream(1, -2)
linecounter = 0
While Not tso.AtEndofStream() <> False
linecounter = linecounter + 1
i = 0
tempvar = tso.readline
For Each cell In Split(tempvar, " ")
i = i + 1
Cells(linecounter, 1) = cell
Next
Wend
Set tso = Nothing
Set fso = Nothing
End Sub
Dim pathname As String, fso As Object, tso As Object, tempfile As String
Dim linecounter As Integer, tempvar, i As Integer
Sub readtextFile()
With Application.FileDialog(msoFileDialogFolderPicker)
.Show
.Title = "Select .txt File to read"
pathname = .SelectedItems(1)
End With
Set fso = CreateObject("Scripting.FileSystemObject")
tempfile = pathname & "\data.txt"
Set tso = fso.getFile(tempfile).OpenAsTextStream(1, -2)
linecounter = 0
While tso.AtEndofStream() <> True
linecounter = linecounter + 1
i = 0
tempvar = tso.readline
For Each cell In Split(tempvar, " ")
i = i + 1
Cells(linecounter, 1) = cell
Next
Wend
Set tso = Nothing
Set fso = Nothing
End Sub
Dim pathname As String, fso As Object, tso As Object, tempfile As String
Dim linecounter As Integer, tempvar, i As Integer
Sub readtextFile()
With Application.FileDialog(msoFileDialogFolderPicker)
.Show
.Title = "Select .txt File to read"
pathname = .SelectedItems(1)
End With
Set fso = CreateObject("Scripting.FileSystemObject")
tempfile = pathname & "\data.txt"
Set tso = fso.getFile(tempfile).OpenAsTextStream(1, -2)
linecounter = 0
While Not tso.AtEndofStream() <> False
linecounter = linecounter + 1
i = 0
tempvar = tso.readline
For Each cell In Split(tempvar, " ")
i = i + 1
Cells(linecounter, 1) = cell
Next
Wend
Set tso = Nothing
Set fso = Nothing
End Sub
Dim pathname As String, fso As Object, tso As Object, tempfile As String
Dim linecounter As Integer, tempvar, i As Integer
Sub readtextFile()
With Application.FileDialog(msoFileDialogFolderPicker)
.Show
.Title = "Select .txt File to read"
pathname = .SelectedItems(1)
End With
Set fso = CreateObject("Scripting.FileSystemObject")
tempfile = pathname & "\data.txt"
Set tso = fso.getFile(tempfile).OpenAsTextStream(1, -2)
linecounter = 0
While tso.AtEndofStream() <> True
linecounter = linecounter + 1
i = 0
tempvar = tso.readline
For Each cell In Split(tempvar, " ")
i = i + 1
Cells(linecounter, 1) = cell
Next
Wend
Set tso = Nothing
Set fso = Nothing
End Sub
No comments:
Post a Comment