i have this complicated (at least i think so :P) project for programming class: Create a program that loads and breaks up a text file into different fields.

Private Sub Command1_Click()

Do While Not EOF(1) And Left$(Line1, 10) <> "Card Name:"
Line Input #1, Line1
Text1 = Line1

Loop
End Sub

that'll return the full line of text beginning with "card name:" but thats all i got for now, i need each line in a different text box so im getting stuck now, any help would be great!