CLOSE PROCEDURE

From Lianjapedia
Revision as of 10:56, 4 February 2013 by Yvonne.milne (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Purpose

Close the procedure library file

Syntax

CLOSE PROCEDURE [<filename> | (<expC>)]

See Also

CLOSE, CLOSE ALL, CLOSE ALTERNATE, CLOSE DATABASES, DO, SET PROCEDURE

Description

The CLOSE PROCEDURE command closes the procedure library named <filename>, or if no library is specified, all currently open procedure libraries. The <filename> can be substituted with a <expC>, enclosed in round brackets, which returns a valid filename. The <filename> is assumed to have a '.prg' extension unless otherwise stated.

Only procedures and functions declared with the SET PROCEDURE TO command are released with the CLOSE PROCEDURE command. Procedures and functions declared in the main program are left active. Up to a maximum of ten procedure files can be opened at one time when the ADDITIVE keyword is used on the SET PROCEDURE command.

Example

set procedure to yourlib
do yourproc
do yourproc2
close procedure