SBendBuckeye
Programmer
Hello,
I have an Excel2000 workbook that would not allow me to insert, copy, rename, etc. (eg everything on the menu when you right click a worksheet name on the tabs on the bottom was grayed out).
By nosing around in the workbook properties, I tracked it down to the ProtectStructure property which according to the help is read only. I didn't intentionally set this and nowhere in the VBA code do I do anything with Protect.
Does anyone know how this property is set?
Thanks in advance for any help you can give me!
PS. I was able to clear it with the following code:
myWorkbookObject.Protect structure:=False
I have an Excel2000 workbook that would not allow me to insert, copy, rename, etc. (eg everything on the menu when you right click a worksheet name on the tabs on the bottom was grayed out).
By nosing around in the workbook properties, I tracked it down to the ProtectStructure property which according to the help is read only. I didn't intentionally set this and nowhere in the VBA code do I do anything with Protect.
Does anyone know how this property is set?
Thanks in advance for any help you can give me!
PS. I was able to clear it with the following code:
myWorkbookObject.Protect structure:=False