Debug, Encrypted
These properties of the Project object correspond to the Debug Info and Encrypted check boxes in the Project Information dialog. They determine whether or not debugging information is stored with the application and whether the object code is encrypted.
Usage |
prjProject.Debug = lAddDebuggingInfo lAddDebuggingInfo = prjProject.Debug prjProject.Encrypted = lEncryptObjectCode lEncryptObjectCode = prjProject.Encrypted |
Example |
* These lines might be part of a program * that documents an open project. ?"Debugging info is " + IIF(oProj.Debug,"on","off")+"." ?"Object code is " + IIF(oProj.Encrypted,"","not ")+"encrypted." |
See Also |