Input Function [VBA]

Returns the open stream of an Input or Binary file (String).

warning

This constant, function or object is enabled with the statement Option VBASupport 1 placed before the executable program code in a module.


SĂŒntaks:


        Input( Number as Integer, [# ] FileNumber as Integer)
    

TagastusvÀÀrtus:

String

Parameetrid:

Number: Required. Numeric expression specifying the number of characters to return.

#: Optional.

FileNumber: Required. Any valid file number.

Veakoodid:

6 ÜletĂ€itumine

52 Vigane failinimi vÔi failide arv

62 Lugemine ĂŒletab faililĂ”pumĂ€rki

NĂ€ide:


        REM ***** BASIC *****
        Option VBASupport 1
        Sub Example_Input
            Dim MyData
            Open "MyDataFile.txt" For Input As #1
            Do While Not EOF(1)
                MyData = Input(1, #1)
                Print MyData
            Loop
            Close #1
        End Sub
    

Palun toeta meid!