Toggle system objects

  • Thread starter Thread starter Margaret Bartley
  • Start date 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.
 
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
 
Back
Top