Hi , I want to know it is possible to hide multiple objects at the same time WITH A SCRIPT , not to hide object 1 , after that hide object 2 .
Professional Software Development Tools
Hi , I want to know it is possible to hide multiple objects at the same time WITH A SCRIPT , not to hide object 1 , after that hide object 2 .
You could either put the object names in a table and step through the entries in the table and hide/show each one, or use Page.EnumerateObjects and step through it that way.
Thanks , that will help me , putting the names of the objects in a table.
Thanks a lot again!![]()
![]()
you could also use application.setredraw = false
and then use the hide object for eatch and then finish by setting the application redraw to true
This will prevent the application from updating when hiding the objects and just redraw the screen once when you are done to make all the object hide simultaniesly.
cheers,
Jonas