Guest User

Untitled

a guest
Mar 18th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. Dim i As Integer = 0
  2. Dim filepath As String = IO.Path.Combine("D:Logs", Textbox13.Text + i.ToString() + ".txt")
  3. Using sw As New StreamWriter(filepath)
  4. sw.WriteLine(TextBox13.Text)
  5. sw.WriteLine(TextBox1.Text)
  6. sw.WriteLine(TextBox2.Text)
  7. sw.WriteLine(TextBox3.Text)
  8. sw.WriteLine(TextBox4.Text)
  9. sw.WriteLine(TextBox5.Text)
  10.  
  11. sw.WriteLine(TextBox7.Text)
  12.  
  13. sw.WriteLine(TextBox9.Text)
  14. sw.WriteLine(TextBox10.Text)
  15. sw.WriteLine(TextBox11.Text)
  16. sw.WriteLine(TextBox12.Text)
Add Comment
Please, Sign In to add comment