Skip to main content
Announcements
Announcing Qlik Talend® Cloud and Qlik Answers™ to accelerate AI adoption! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
shane_spencer
Specialist
Specialist

Macro to disable/enable reloads

Is it possible to create a macro (or indeed another option) to disable / enable reloads?

i.e. something that effectively does the same as going to Document Settings and deselecting/selecting the Reload option under security. Thus allowing me to prevent the user performing Reloads until certain criteria have been met.

reload.PNG

2 Replies
zhadrakas
Specialist II
Specialist II

i found this in api guide.

But that is only for User Properties and it is read-only i think.

temp=ActiveDocument.GetProperties.UserPermissions

temp.Reload = true 'False
msgbox(temp.Reload)

seems like you are not able to do this via macro.

shane_spencer
Specialist
Specialist
Author

Thanks Tim. I suspected as much.