using VBA to set a keyboard option setting

P

Paul

Is there a way I can get VBA (Access 2003) to set a keyboard option setting
on the desktops of all users of an application?

I would like to set the "Behavior entering field" setting in the
Tools-Options-Keyboard (tab) dialog set to "Go to end of field", and I would
like to do it using VBA. Is there a way to accomplish this?

Thanks in advance,

Paul
 
P

Paul

Thanks for suggesting the Application.SetOption approach, Pieter.

After some experimentation, I found that

Application.SetOption "Behavior entering field", 2

would do the trick.

Paul


PieterLinden via AccessMonster.com said:
PieterLinden said:
Is there a way I can get VBA (Access 2003) to set a keyboard option
setting
on the desktops of all users of an application?
[quoted text clipped - 6 lines]
something like...
Application.SetOption "Behavior entering field", "Go to end of field"
 
P

Paul

You have to understand that changing options individual users have set is
never a good idea.

Never? How can you be sure if you don't know anything about the workgroup
for which I'm doing this, or my role in that workgroup?
 

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