hi, I need some help with writing a stream into a file.
ive got the following code
For i = 0 To v_count - 1
stream = New IO.StreamReader(wc.OpenRead(v_input(i)))
v_temp = stream.ReadToEnd
TextBox1.Text = TextBox1.Text + v_temp
stream.Close()
Next
I would like to modify it to write each stream into a file called
ad1.html, ad2.html and so on, instead of inputing it into an array.
ive got the following code
For i = 0 To v_count - 1
stream = New IO.StreamReader(wc.OpenRead(v_input(i)))
v_temp = stream.ReadToEnd
TextBox1.Text = TextBox1.Text + v_temp
stream.Close()
Next
I would like to modify it to write each stream into a file called
ad1.html, ad2.html and so on, instead of inputing it into an array.