random access files

RonR

Well-known member
Joined
Nov 23, 2007
Messages
82
Programming Experience
5-10
I need code to define & open random access files in VB.net(VB 2008).


I only use them on a limited basis but I need it just the same.
 
Look into the documentation for Microsoft.VisualBasic namespace and the FileSystem class there, it has methods like FileOpen, FilePut and FileGet. I think this is used only to convert old VB6 data. With new VB.Net applications you would use System.IO or System.Xml namespaces and/or serialization.
 
Back
Top