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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Lock all the controls in the hole document

Wrong number of arguments or invalid property assignment: 'q.LockAll'

My code


Sub Bloquear
Set q = ActiveDocument
q.LockAll (true)
end sub

1 Reply
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

According to the V9 API guide, LockAll takes no arguments. So it should be just:

q.LockAll

-Rob