Switching Hidden / system objects programatically

B

bzamfir

Hi,

Is there any way to switch visible status for hodden / system objects
programatically in Access?
Anythink like properties AllowBypassKey, AllowContextMenu, etc

Regards,
Bogdan
 
D

Dirk Goldgar

bzamfir said:
Hi,

Is there any way to switch visible status for hodden / system objects
programatically in Access?
Anythink like properties AllowBypassKey, AllowContextMenu, etc

Application.SetOption "Show Hidden Objects", True (or False)
Application.SetOption "Show System Objects", True (or False)

But be aware that these are not database-specific options, but
application-wide. If your application screws around with *my* Access
settings, it goes into the trash can.
 
B

bzamfir

Hi,

Thank you very much.
One more question

Can I use this approach for any other setting from Options dialog?
Or, do you know if this strings are the same for different Access language
versions, or they are language specific?

Regards,
Bogdan
 
B

bzamfir

Hi,

I checked for SetOptions method in help, and found all possible settings.

Thanks again.
 

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