Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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 ?

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

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

- Marcus