DesignerRestrictions Bugs
After trying the version 1.1.29, I find some problems in using the DesignerRestrictions
When I using the following code
objDesign.Designer.Restrictions.DontCreateReport = True
objDesign.Designer.Restrictions.DontLoadReport = True
When I using the following code
objDesign.Designer.Restrictions.DontCreateReport = True
objDesign.Designer.Restrictions.DontLoadReport = True
Comments
Config.DesignerSettings.Restrictions.DontCreateReport = true;
Config.DesignerSettings.Restrictions.DontLoadReport = true;
Another way is to use EnvironmentSettings component and do the same with its DesignerSettings property.