Modify
This method belongs to the File object and lets you programmatically open a file from an open project for editing.
Usage |
filFile.Modify( [ cClassName ] ) |
Example |
* Go through a project and open all the programs for editing * Assume we have a reference to the project in oProj FOR EACH oFile IN oProj.Files IF oFile.Type = "P" oFile.Modify() ENDIF ENDFOR * Open a particular class. oProj.Files[3].Modify("frmBase") |