Multiple User Form View

L

lcwallis

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:)
 
P

Peter De Baets

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
 
Top