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 "" ?
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 "" ?