Hi, I use this code to write values of the TextBox:

Code:
Open "Server.txt" For Append As #1
Write #1, txtUPDATE.Text & "," & txtURL.Text & "," & txtDIR.Text & vbNewLine
Close #1
But when I open Server.txt:

Code:
"test,test,test
"

"test2,test2,test2
"

"test3,test3,test3
"
I need remove this ( " )!

TO:

Code:
test,test,test

test2,test2,test2

test3,test3,test3
it's possible?