Welcome to VBA Tips & Tricks.
All VBA related information will be posted on this blog. Of late, VBA has been disregarded by many software professionals for .Net, c# and other technologies. This blog will also post articles related to them too
Happy reading
Pages
▼
Friday, April 11, 2008
Check Protection of VBA project using Excel VBA
Check state of protection of VBProject
Returns a value indicating the state of protection of a project.
Sub Is_Project_Protected()
If Application.VBE.ActiveVBProject.Protection = vbext_pp_locked Then MsgBox "Protected" End If
No comments:
Post a Comment