i would like to read some data and display it in textbox.
my example of data in my txt file are:
"moviename1", "movieshowtime1"
"moviename2", "movieshowtime2"
when i display it in text box, it shows exactly like above.
i want it to display without the quotes.
how i can achive tat?
moviename1, movieshowtime1
moviename2, movieshowtime2
this is my code
Private Sub Command1_Click()
Dim dText As String, dNextLine As String, lLineCount As Long
lLineCount = 1
Open "C:\Users\Chern\CINEMA\reserve.txt" For Input As #1
Do While Not EOF(1)
Line Input #1, dNextLine
dText = dText & dNextLine & vbCrLf
Loop
Text1.Text = dText
End Sub