Re: .NOT My Views
Well if you seriously prefer wading through this:
Dim FileNum As Long
Dim Contents As String
FileNum = FreeFile
Open "c:\mytextfile. txt" For Binary As #FileNum
Contents = Space(LOF(FileN um))
Get #FileNum, , Contents
Close #FileNum
as opposed to this:
Dim contents as string =
My.Computer.Fil eSystem.ReadAll Text("c:\mytext file.txt")
then we're never going to agree.
:-)
RR
Well if you seriously prefer wading through this:
Dim FileNum As Long
Dim Contents As String
FileNum = FreeFile
Open "c:\mytextfile. txt" For Binary As #FileNum
Contents = Space(LOF(FileN um))
Get #FileNum, , Contents
Close #FileNum
as opposed to this:
Dim contents as string =
My.Computer.Fil eSystem.ReadAll Text("c:\mytext file.txt")
then we're never going to agree.
:-)
RR
Comment