H
HBj
Hello,
My protecting Excel 97 VBA-code is as follows
With ActiveWorkbook.Sheets("MAIN")
.EnableSelection = xlUnlockedCells
.EnableAutoFilter = True
.Protect Contents:=True, userInterfaceOnly:=True
One of the Unprotect codes is
Sheets("Main").Select
ActiveSheet.Unprotect
....but
....after unprotect, copy/paste is not possible. What can be wrong with the
protect code? How can I restore the complete unprotect state?
HBj
My protecting Excel 97 VBA-code is as follows
With ActiveWorkbook.Sheets("MAIN")
.EnableSelection = xlUnlockedCells
.EnableAutoFilter = True
.Protect Contents:=True, userInterfaceOnly:=True
One of the Unprotect codes is
Sheets("Main").Select
ActiveSheet.Unprotect
....but
....after unprotect, copy/paste is not possible. What can be wrong with the
protect code? How can I restore the complete unprotect state?
HBj