Once you have a line from the file (or even the whole file), you can do somthing like

Code:
Dim strParts() As String

strParts = Split(MyData, vbTab)
strParts(0) will then contain the first piece of data, strParts(1) the 2nd, etc.