For some obvious reason that I can't figure out the below code is only displaying the last record from my .txt file in the label1 object.
Private Sub CommandButton1_Click()
Dim name As String
Dim wage As Single
Dim hours As Single
Dim pay As Single
lable1 = ""
Open "C:\Documents and Settings\speared\Desktop\staff.txt" For Input As #1
For i = 1 To EOF(1)
Input #1, name, wage, hours
pay = wage * hours
Next i
Label1 = name & pay
Close #1
End Sub