Comments and notes on SQL Server 2000, 2005, and T-SQL
Browse by Tags
All Tags »
streamwriter (
RSS)
Sorry, but there are no more tags available to filter with.
-
|
Dim file As System.IO.StreamWriter
file = My.Computer.FileSystem.OpenTextFileWriter( "c:\test.txt" , True )
file.WriteLine( "Here is the first string." )
file.Close()
|