Only two lines in the text file? or only the 1st two lines needed? Then try this instead
Code:
Dim strLine As String
Open "C:\Score.txt" For Input As #1
Line Input #1, strLine ' read one line at a time vs entire file
lblX.Caption = strLine
Line Input #1, strLine
lblO.Caption = strLine
Close #1