Programming Reference Manual
 
Syntax
 
Line Input [#]StreamNum, S$
Description
Get a line of input from StreamNum and assign it to S$.
See Also
Example
 
Sub Main
    Open "XXX" For Input As #1
    Line Input #1,S$
    Debug.Print S$
    Close #1
End Sub