Visual Basic - Archivos

Life is soft - evento anual de software empresarial
 
Vista:

Archivos

Publicado por j (1 intervención) el 22/07/2004 21:49:57
quiero saber para que sirve la funcion loc( ) que tiene como parametro un numero de canal libre para un archivo
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

RE:Archivos

Publicado por miguel (1042 intervenciones) el 23/07/2004 00:10:31
Returns aLong specifying the current read/write position within an open file.

Syntax

Loc(filenumber)

The required filenumberargument is any validIntegerfile number.

Remarks

The following describes the return value for each file access mode:

Mode Return Value
Random Number of the last record read from or written to the file.
Sequential Current byte position in the file divided by 128. However, information returned by Loc for sequential files is neither used nor required.
Binary Position of the last byte read or written.

Loc Function Example
This example uses the Loc function to return the current read/write position within an open file. This example assumes that TESTFILE is a text file with a few lines of sample data.

Dim MyLocation, MyLine
Open "TESTFILE" For Binary As #1 ' Open file just created.
Do While MyLocation < LOF(1) ' Loop until end of file.
MyLine = MyLine & Input(1, #1) ' Read character into variable.
MyLocation = Loc(1) ' Get current position within file.
' Print to the Immediate window.
Debug.Print MyLine; Tab; MyLocation
Loop
Close #1 ' Close file.

Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar