Toggle system objects

  • Thread starter Margaret Bartley
  • Start date
M

Margaret Bartley

Is there a way to use VBA or write a macro to toggle whether the System
Objects are visible? This is on the General tab of the Options form.
 
S

Stuart McCall

Margaret Bartley said:
Is there a way to use VBA or write a macro to toggle whether the System
Objects are visible? This is on the General tab of the Options form.

Application.SetOption "Show System Objects", True

will switch them on

Application.SetOption "Show System Objects", False

will switch them off

HTH
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top