binary file

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

I have a function in VB6 that is getting a file in binary format back from
the
server and writes the file to the local C: drive, and then I open the file,
How can i do the samething using VB.NET?
 
Check out the System.IO.File class, it describes several options for
handling file I/O.

Adios,
January
 
* "Mike said:
I have a function in VB6 that is getting a file in binary format back from
the
server and writes the file to the local C: drive, and then I open the file,
How can i do the samething using VB.NET?

Have a look at the classes provided in the 'System.IO' namespace.
 
Back
Top