i am opening a file with 5 lines
layed out in theis format
"string", "string", number, number
"string", "string", number, number
"string", "string", number, number
"string", "string", number, number
"string", "string", number, number

i only get the last line when i open it
so it says this
"string", "string", number number



this is my code any problems with this?
i have to rewrite to it also


Open "a:\THRFILE.DAT" For Input As #1


Do While Not EOF(1)
Input #1, name
Input #1, sex
Input #1, dba
Input #1, rest

Loop

Close #1

txtView.Text = name + " " + sex + " " + dba + " " + rest