Logo

Hacker’s Guide to Visual FoxPro
An irreverent look at how Visual FoxPro really works. Tells you the inside scoop on every command, function, property, event and method of Visual FoxPro.

CLOSE ALL

CLOSE ALL is a kitchen sink command. It closes databases, tables and their indexes, and any files opened via the Low-level File Functions. It also closes certain system windows, but not user-defined windows. It closes alternate files, format files, procedure files and class libraries. Basically, it does everything the individual CLOSE commands do, plus a little more.

Usage

CLOSE ALL

Example

USE MyTable IN 0
OPEN DATA TasTrade
CLOSE ALL

See Also

Close Alternate, Close Databases, Close Format, Close Indexes, Close Procedure, Close Tables, Deactivate Window, Release Classlib, Use