hi guys
have a look at this code

Code:
Open "C:\Score.txt" For Input As #1
Text1.Text = Input$(LOF(1), #1)

lblX.Caption = Text1.Text
lblO.Caption = Text1.Text
the score text file contains the following

Code:
2
3
when i run the program, and load the file, the lblX and the lblO
both display everything in the text file

but i would like the lblX to display the first line in the text file ie: 2

and the lblO to display the second line in the text file ie: 3

so how can i do this?