ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Programmatically unprotect my protected project to delete modules? (https://www.excelbanter.com/excel-programming/379342-programmatically-unprotect-my-protected-project-delete-modules.html)

Toby Erkson

Programmatically unprotect my protected project to delete modules?
 
I have set the "Lock project for viewing" in my Project Properties. Just to
keep away casual prying eyes. There is a section in on of my modules where
I delete other modules (but not the one where the code is running):

With ActiveWorkbook.VBProject
'Remove modules from wkbk
.VBComponents.Remove .VBComponents("UpdateKPIdatasets")
.VBComponents.Remove .VBComponents("zSupport")
.VBComponents.Remove .VBComponents("RegExps")
.VBComponents.Remove .VBComponents("UserForm1") 'Remove form from wkbk
End With

I get an error with the first .Remove and everything stops because the
project is protected. Okay, that's to be expected, so is there a way I can
programmatically Unprotect the project? The code does work if I unprotect
my project.
--
Toby Erkson
http://www.bidata.net/



Toby Erkson

Programmatically unprotect my protected project to delete modules?
 
Ah, Chip's site...thanks. Bummer :-(

--
Toby Erkson
http://www.bidata.net/

"Jim Thomlinson" wrote in message
...
Nope... You can try using send keys but that is hit and miss... See the
first
NOTE: in the attached hyperlink...

http://www.cpearson.com/excel/vbe.htm
--
HTH...

Jim Thomlinson




Dave Peterson

Programmatically unprotect my protected project to delete modules?
 
Maybe it's time to separate your workbook into two pieces--one for the data (a
template workbook maybe???) and one for the code.

Then any code that you need in the workbook can be stored in that template
workbook. And any code that you need (but not share) can be kept in the addin.

Toby Erkson wrote:

I have set the "Lock project for viewing" in my Project Properties. Just to
keep away casual prying eyes. There is a section in on of my modules where
I delete other modules (but not the one where the code is running):

With ActiveWorkbook.VBProject
'Remove modules from wkbk
.VBComponents.Remove .VBComponents("UpdateKPIdatasets")
.VBComponents.Remove .VBComponents("zSupport")
.VBComponents.Remove .VBComponents("RegExps")
.VBComponents.Remove .VBComponents("UserForm1") 'Remove form from wkbk
End With

I get an error with the first .Remove and everything stops because the
project is protected. Okay, that's to be expected, so is there a way I can
programmatically Unprotect the project? The code does work if I unprotect
my project.
--
Toby Erkson
http://www.bidata.net/


--

Dave Peterson

Toby Erkson

Programmatically unprotect my protected project to delete modules?
 
Hmm...good thinkin'! :-)
--
Toby Erkson
http://www.bidata.net/

"Dave Peterson" wrote in message
...
Maybe it's time to separate your workbook into two pieces--one for the
data (a
template workbook maybe???) and one for the code.

Then any code that you need in the workbook can be stored in that template
workbook. And any code that you need (but not share) can be kept in the
addin.





All times are GMT +1. The time now is 04:53 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com