Removing "" from a .txt after adding from list.box

ICE_BLUE
05-10-2003, 02:21 AM
HI I am using.
Private Sub cmdWrite_Click()
Open App.Path + "\Ignore.txt" For Append As #2
Write #2, txtInput
Close #2
End Sub

and

Private Sub Form_Load()
Open App.Path + "\Ignore.txt" For Input As #1
textvar1 = Input(LOF(1), 1)
Close #1
End Sub

and

Private Sub txtInput_Change()

End Sub

To write imputed data to a .txt but it adds the data wraped in "" like
"data" how can I make it add the Data without the "" ?

vbfan
05-10-2003, 02:30 AM
you use "write" to write it in the file so it will make the quotes around the text.
Save the text by using the print command:
Open App.Path + "\Ignore.txt" For Append As #2
print #2, txtinput
Close #2

ICE_BLUE
05-10-2003, 02:43 AM
you use "write" to write it in the file so it will make the quotes around the text.
Save the text by using the print command:
Open App.Path + "\Ignore.txt" For Append As #2
print #2, txtinput
Close #2



THANK YOU! so very much and for the quick reply helps me so much the "" renderd my program useless grrr ehre is my program if ud like
www.frozeniceblue.o-f.com

EZ Archive Ads Plugin for vBulletin Copyright 2006 Computer Help Forum