Please review the site disclaimer before downloading or using content found on this site
Written by: Steve Gray 9/13/2010 9:29 PM
Here’s a code snippet that will read a text file into a string
Imports System.IO
Dim filestream As StreamReader filestream = File.OpenText(strScript) Dim strScriptText As String = filestream.ReadToEnd
0 comment(s) so far...