what about the OpenMode.Binary
that I am doing with the file?
Main Topics
Browse All Topicshere is the code I use in vb6 what is the equilivent in vb.net
Dim data, finaldata As String
Dim fil As Short
fil = FreeFile()
FileOpen(fil, "C:\text.txt", OpenMode.Binary)
data = Space(LOF(fil))
FileGet(fil, data)
FileClose(fil)
finaldata = data
I tried System.IO.StreamReader, but it didn't seem to work. I think it is because of the openmode.binary isn't excepted by the streamreader.
Any ideas?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
That isn't VB6 code...it's VB.Net code utilizing the Microsoft.VisualBasic namespace functions:
FileOpen(), FileGet() and FileClose():
http://msdn.microsoft.com/
http://msdn.microsoft.com/
http://msdn.microsoft.com/
If you truly need Binary access to read PRIMITIVE types from the file then use the BinaryReader() class:
http://msdn.microsoft.com/
But it looks like you are simply trying to get the entire contents of the file into a String...in which case Fernando has already given you the answer.
If you need to manipulate the file at an even lower level then use the FileStream() class:
http://msdn.microsoft.com/
Business Accounts
Answer for Membership
by: FernandoSotoPosted on 2006-01-25 at 18:26:28ID: 15792299
Hi bear23;
)
This should do it.
Imports System.IO
Dim data As String
Dim fil As New StreamReader("C:\text.txt"
data = fil.ReadToEnd()
fil.Close()
Fernando