ขอคำแนะนำเกี่ยวกับการเขียน WriteLine แบบ auto ลง textfile หน่อยครับ
ต้องการให้ที่อยู่เว็บอยู่เหมือนเดิมแต่ให้เปลี่ยนเฉพาะตัวเลข id
ที่กำหนดไว้เท่านั้น โดยกำหนด id เริ่มต้นที่ TextBox1 และสิ้นสุด
id ที่ TextBox2 ต้องเขียนโค้ดแบบไหนครับ ขอบคุณครับ
Dim _txt As String
Using r As New System.IO.StreamReader("C:\txt_1.txt")
_txt = r.ReadToEnd()
End Using
For i As Integer = Integer.Parse(TextBox1.Text) To Integer.Parse(TextBox2.Text)
_txt += vbCrLf & "https://www.thaicreate.com/dotnet/forum/" & i & ".html"
Next
Using w As New System.IO.StreamWriter("C:\txt_1.txt")
w.Write(_txt)
End Using