Line Input Instruction

Syntax:

LineInput [#]StreamNum, S$

Group:File

Description:
Get a line of input from StreamNum and assign it to S$.

See Also:Input, Print, Write.

Example:

Sub Main
  Open "XXX" ForInput As #1
  LineInput #1,S$
  Debug.Print S$
  Close #1
End
Sub