Results 1 to 3 of 3
  1. #1
    Treble_Mebbel is offline Novice
    Windows 7 32bit Access 2007
    Join Date
    Oct 2011
    Posts
    1

    Access 2007 DB Intranet Deployment

    Hi All,

    I am new to the forums, and very much new to Access as well.



    I desperately need help, and would really appreciate any feedback anybody has for me here.

    The project I am working on will look like this, or rather this is what I have in my mind.

    Environment: Web-based (Intranet)
    Tool: Front (Web Tool, input) Back (DB on shared drive, collect)

    The users within this group will need to have a web tool/ app that feeds their input into the Access DB on the shared drive.

    Type of information is fairly simplistic.

    Username (login ID)
    Activity Type
    Data (automatically populated)
    Reference number (case/ or other)

    Once submitted the information will be loaded into the DB tool, which will allow me to pull frequent information off it using pivottables.

    I just have no idea on how to start with this, what best practice would be, and how to deploy this so it works within a multi-user environment.

    Is there someone that can shed some light on this for me.

    Thank you in advance!

    Kind Regards,

    Michael

  2. #2
    June7's Avatar
    June7 is offline VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,622
    Possibly no need to use web for intranet deployment of multi-user database if all users are able to map to the data server. This thread discusses how I serve split database on internal server http://forums.aspfree.com/microsoft-...tc-324677.html

    My project doesn't require users to 'login'. I identify the user by their network username. I have code that obtains username from the network with Environ("USERNAME") - yes, type it exactly as shown. Access will not recognize the Environ function but VBA will. I don't bother with password because I take it for granted if they are validated by network they are valid users for the database. I have a Users table that has username and initials (so far everyone's initials are unique, you might use an autonumber field). I set a textbox on main menu form to user's initials so always available for reference because the main menu form never closes.
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  3. #3
    boblarson is offline --------
    Windows 7 64bit Access 2010 32bit
    Join Date
    Jun 2011
    Posts
    1,272
    Quote Originally Posted by June7 View Post

    My project doesn't require users to 'login'. I identify the user by their network username. I have code that obtains username from the network with Environ("USERNAME") - yes, type it exactly as shown.
    If you use Environ("username") I would highly suggest that you use the VBA. part before it. The reason? I've seen it fail on some systems after upgrades. So, using

    VBA.Environ("username")

    is actually better in that it won't fail on those systems when it would otherwise.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. import excel file to access 2003 yes, access 2007 no
    By stapik in forum Import/Export Data
    Replies: 9
    Last Post: 07-27-2011, 07:09 AM
  2. Replies: 2
    Last Post: 06-18-2011, 09:55 AM
  3. Access Deployment
    By nidaz17 in forum Access
    Replies: 10
    Last Post: 04-25-2010, 02:50 AM
  4. Replies: 0
    Last Post: 11-17-2009, 02:35 PM
  5. Updating Data Access Page on Intranet?
    By slash75 in forum Access
    Replies: 0
    Last Post: 11-14-2008, 03:26 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums