Multiple User Form View

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a simple database that multiple users enter information into, then
reports are generated from the information. When I test it on different user
stations, it comes up with all the toolbars, or none of the toolbars....
different views.

How can I make the form come up the same on everyones station without and
toolbars, form only??

Thanks
L:)
 
You can hide or show toolbars from your form OnOpen or OnActivate
event procedures like so:

DoCmd.ShowToolbar "MyToolbarName", acToolbarNo

DoCmd.ShowToolbar "MyToolbarName", acToolbarYes

Hope this helps,

Peter De Baets
Peter's Software - MS Access Tools for Developers
http://www.peterssoftware.com
 

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

Back
Top