Form creation in Multiuser environment

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

Guest

Hi all
What is the good practice in creating form in multiuser environment
Say for example that in one form there are several buttons and different user(s) access different button(s), or some user has different access rights (add, edit or delete records), should I create different forms for each functions
Your advice is highly appreciated

TIA
Djoezz
 
Djoezz said:
Hi all,
What is the good practice in creating form in multiuser environment?
Say for example that in one form there are several buttons and different
user(s) access different button(s), or some user has different access rights
(add, edit or delete records), should I create different forms for each
functions?
Your advice is highly appreciated.

The best way to implement rights and permissions is to use User-level
security:

http://support.microsoft.com/support/access/content/secfaq.asp

If you don't want to do that, you can also show or hide (Visible property)
objects based upon the network logged on username:

http://www.mvps.org/access/api/api0008.htm
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access
 
Back
Top