Software Development Network>> VS Express Editions>> Saving a File
The System.IO namespace contains all you need to work with files. System.IO.File.WriteAllText is the quickest way to write text to a file, if that's what you want to do.
Or you can use the VB My Classes
My.Computer.FileSystem.WriteAllText (<Filename>, <Content String>,<Append>)
http://msdn2.microsoft.com/en-us/library/27t17sxs(VS.80).aspx
Saving a File
David Friedland
The System.IO namespace contains all you need to work with files. System.IO.File.WriteAllText is the quickest way to write text to a file, if that's what you want to do.
Sandro Christiaan
Or you can use the VB My Classes
My.Computer.FileSystem.WriteAllText (<Filename>, <Content String>,<Append>)
http://msdn2.microsoft.com/en-us/library/27t17sxs(VS.80).aspx