These two methods of the File object allow an individual file to come under, or be freed from, source code control.
lResult = filFile.AddToSCC()
lResult = filFile.RemoveFromSCC()Use these two methods to add a file to your source code control system or remove it.
* Clear all the files in a project out of SCC
oProject = _VFP.ActiveProject
FOR EACH oFile IN oProject.Files
IF oFile.ReadOnly && if .T., it is under SCC
oFile.RemoveFromSCC()
ENDIF
ENDFORCheckIn, CheckOut, File, GetLatestVersion, Project, UndoCheckout
