Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

set module password

is it possible to set the module password ?

I forgot what it was ?

Labels (1)
3 Replies
flipside
Partner - Specialist II
Partner - Specialist II

I don't think you can reset it, but you can recover the code by opening another Qlikview document and reading the module with a sub like this ...

sub ReadOtherModule

     set App = ActiveDocument.GetApplication
     set doc = App.OpenDoc ("path to other doc")

     x = doc.GetProperties.VBModule

     msgbox x

end sub

This doesn't ask me for the password!!

Not applicable
Author

Hi flipside, that's a great workaround!

Is this applicable to hidden scripts as well?

marcus_sommer
MVP
MVP

You could replace VBModule with Script but I don't think that the hidden part will be included.

- Marcus