Code:
    Do While Not EOF(fn)
 Line Input #fn, sBuffer
      '    Input #fn, sBuffer



TempArray = Split(sBuffer, ",") ' this will split the data on each comma
' convert your text data into integers for the subroutine
MidLevelPostNotched (TempArray(0)), (TempArray(1)), (TempArray(2))
             

      
     

    Loop