Projects Collection

Applies To   Properties   Methods   See Also

A collection of project objects.

Syntax

Projects

Remarks

A projects collection provides access to project objects, allowing you to manipulate a project and files and servers within the project.

Items in projects collection can be referenced by index number or by name. For example, the following code rebuilds the most recently opened project:

_VFP.Projects(1).Build( )

The following code rebuilds the project named MyProject:

_VFP.Projects('MyProject.pjx').Build( )

For more information about the projects collection, see Project Manager Hooks in Chapter 32, “Application Development and Developer Productivity,” of the Programmer's Guide.