Question

  Asked: Apr 30 2008   1:18 PM GMT
  Asked by: Joe260986


access 07 help


Access 2007, Microsoft Access, Database

i have a database in accses o7 that i wont to share over a network and allow users to log in on any system so that they can update or view the database'forms'and reports..please help

Subscribe to Alerts! Get questions and answers delivered to your Inbox.


E-mail me updates on this question



   SUBSCRIBE

hidden modal window

Answer Wiki (Improve, edit or add to this answer)


 RATE THIS ANSWER
0
Click to Vote:
  •   0
  •  0



what ever you want other peoples to do either update or register just share that particular document and then person is through.
note: you must have a software that reguires login and log out okay ?
  • AddThis Social Bookmark Button

Browse more Questions and Answers on Database.

Looking for relevant Database Whitepapers? Visit the SearchOracle.com Research Library.


Discuss This Answer


You must be logged-in to discuss a question. Log-in/Register

Joe260986  |   May 2 2008  3:20PM GMT

i wont users of the database to be able to login and logout i have now made the login form but once they have logged in my switch board comes up so it doesnt really matter who loggs in ..i wont differnt switchboard options for differnt accounts

 

Randym  |   May 5 2008  2:28PM GMT

You can do this a couple of ways.

The easiest is to simply show only the buttons for what the user has permissions to. To do that, start out with ALL buttons as invisible. Next create a “SwitchBoard” table that has the “userid” and the “buttonID” that they have permission to. Then on open of the form, read the Switchboard table for the user who logged in and show the buttons he has permission to. To make it easier, the buttons should be named sequentially so that you can make a loop. Ex. Button1, button2, button3, etc. Then you can loop throug the switch board table for that user and make his buttons visible:

SwitchBoard table:
UserID ButtonID
User1 1
User1 3
User2 5
User2 6

Create a recordset on the SwitchBoarad table where the user = the user logged in
While not recordset.eof
me(”Button” & recordset.buttonid).visible = true
recordset.movenext
Wend