Exclude
This property indicates whether a file gets built into a project or is simply listed there for reference.
Usage |
lExcluded = filFile.Exclude filFile.Exclude = lExcluded |
In the initial release of VFP 7, the Exclude property isn't updated properly when it's changed through the user interface. You have to close and reopen the project to have the interaction change reflected. This bug is fixed in Service Pack 1. |
Example |
* Check the Exclude status of all files in the project. FOR EACH oFile IN _VFP.ActiveProject.Files ?oFile.Name+" is "+IIF(oFile.Exclude,"not ","")+"included." ENDFOR |
See Also |