Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- FlexFile Reference Guide - <b>v_close()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 V_CLOSE()
 Close a DBV type file
-------------------------------------------------------------------------------

 Syntax

    V_CLOSE( [<nWorkArea> | <cAlias>] )

 Arguments

    <nWorkArea> or <cAlias> is the DBV area or alias to close. If none
    is specified the file in the current DBV area is closed.

 Returns

    None.

 Description

    V_CLOSE() closes a FlexFile DBV type file. This is equivalent to
    V_USE() with no arguments.

 Notes

  . This function does not affect and is not affected by any
    Clipper data base functions or commands.

 Examples

// Open a DBV type file in FlexFile's area 1.
V_SELECT(1)
V_USE( "file" )

// Select a second area just for the heck of it.
V_SELECT(2)

// Close the file in area one.
V_CLOSE(1)

// Close a file (if one is open) in area 2
V_CLOSE()

See Also: V_USE() V_CLOSEALL()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson