Hide DB Window, Disable F11 in Code

A

Alan Z. Scharf

How can I hide the DB window and disable F11 in code.for ADP project?

I need to do this only for read-only users.

I haven't found answer in books or Google.

Thanks.

Alan
 
G

Guest

hi,
Manually -
make sure the database window has focus:
window>hide
programmaticly -
DoCmd.SelectObject acForm,,True
RunCommand acCmdWindowHide
disable F11:
not sure.
 
G

Guest

hi, again,
i forgot,
to hide at startup:
Tools>startup>uncheck display database window.
 
A

Alan Z. Scharf

Thanks for your reply.

However, I need to disable the F11 key in code, not via the menu.

Thanks again.

Alan
 
G

Guest

i didn't tell you how to disable the F11 key. i gave you 3
different way to hide the db window. manually,
programaticly and on startup.
 

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