By Uwe Steden on Thursday, 16 January 2020
Posted in VBA Development
Likes 0
Views 811
Votes 0
Hello everybody,

how can I change the project property "read-only" („Schreibschutz“) via VBA.
The expression is listed as "Protect" in the VBA, but the value "True" or "False" cannot be read out. The value "<property not supported>" („<Eigenschaft nicht unterstützt>“) is listed here.



Dim oStartObj as ObjectItem
Set oStartObj = Application.Folders.Projects.Children.Item(i)…….
oStartObj.Protected = False
View Full Post