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
 
Top