Ok this reads line 1 on a text file

Open "c:\yourfile.txt" For Input As #1
Dim sFirst
Line Input #1, sFirst
If sFirst = "yes" Then
Label1.Visible = True
Else
Exit Sub
End If

Close #1

y when i switch line input#1 to 2 it doesnt read line 2? How would i go about change it to line 2.