Preventing Users From Editing Code For A Database

Feb 25, 2014

I have an access database which was created in 2003. I opened a blank database and imported the definition and data in access 2010 and made the file an accde file. Now this file has a lock symbol next to the access symbol. I am also unable to edit the main form.

View Replies


ADVERTISEMENT

General :: Preventing Users Accessing Database

Dec 19, 2012

If I need to take the backend of my database offline for changes, what's the best/easiest way to inform the users? Is there some code I can drop into the front end? I'm thinking a "on database open, if [available] in tblClose equals no, then open frmDatabaseOffLine". But I don't know a) if that's possible or b) how to program it.

View 5 Replies View Related

Preventing Users From Adding Tables

Jan 30, 2008

Hi everyone,

This is in regards to user security. I'm a relatively new user to Access (and this forum). My company uses Access 2000 and I'm taking over a database thats used by several departments at my company. This database contains sensitive information so I put user security on it using the wizard. Due to the nature of the database, a particular user group needs to have the ability to create new tables. The problem is this: No matter what I do with the user group security settings, I cannot prevent other user groups from creating new tables. Is there a way to prevent certain users from adding a table?

:confused:
Your help is appreciated

View 1 Replies View Related

Preventing Users From Changing A Record

Jul 25, 2007

I'm not sure if this is a Table question or a Form question...

After a user enters data into all the fields on my form (ticket #, date, time, etc) and submits that form, I want to prevent them from going back to that record (or any record, for that matter) and make a change to it. Currently, they can do a "Find" on a specific ticket # while in the form and make any kind of change they wanted. ie: change the time they reported to a work site...

Is there an easy way to prevent this from happening?

Thanks!

View 3 Replies View Related

Allow Users Different Editing Rights

Feb 24, 2006

Can someone please help me out? I have a login form which asks for the users name and password and that all works fine. However, I then want to open a form giving them different editing rights depending on the access level I have assigned them. I have copied the code below. The intAccessLevel is being read in properly but when the form "Sample" opens it ignores the Me.Allow.... statements which corresponds to the different access levels. Does anyone have any ideas why this is the case?

Many thanks,
CC


intAccessLevel = DLookup("AccessLevel", "tblUsers", "[UserID]=" & Me.cboUserName)

If intAccessLevel = 1 Then
DoCmd.OpenForm ("Sample")
Me.AllowAdditions = True
Me.AllowDeletions = True
Me.AllowEdits = True
ElseIf intAccessLevel = 2 Then
DoCmd.OpenForm ("Sample")
Me.AllowAdditions = True
Me.AllowDeletions = False
Me.AllowEdits = True
ElseIf intAccessLevel = 3 Then
DoCmd.OpenForm ("Sample")
Me.AllowAdditions = True
Me.AllowDeletions = False
Me.AllowEdits = False
ElseIf intAccessLevel = 4 Then
DoCmd.OpenForm ("Sample")
Me.AllowAdditions = False
Me.AllowDeletions = False
Me.AllowEdits = False
End If

View 1 Replies View Related

Preventing Users Linking Tables To A "secured MDB"

Nov 3, 2005

Hello,

I am wondering if there is a way of preventing people from linking tables with a database i have that has a security logon?

In essence they would be able to run their own database with the information in my secure mdb without first logging in !!

Is there a way of preventing this? Any pointers or guidance would be most helpful

Cheers

View 2 Replies View Related

Help Me With Code For Adding And Editing Records Using Forms.

Jan 29, 2006

Hi,
I have the following situation.
I have a switchboard form which has 2 buttons (Add And Edit)
I have a patient record form, which has 2 fields, (DateRecCaptured and DateRecUpdated)
Both buttons on the switchboard open the Patient Record form (one opens it in Add mode and the other in Edit mode)

This is what should happen.
If I click on the add button on the switchboard, the patient record form should open to allow me to add a record. The system date should then automatically be saved in the DateRecCaptured field.
If i click on the Edit button and edit a record, the system date should be saved in the DateRecUpdated field. If no updates are made, the field shouldn't be updated. If you scroll among records, the DateRecUpdated field shouldn't be updated. When editing, the DateRecCaptured field should remain unchanged.

Thanx

View 1 Replies View Related

Preventing Access To Database Window

Oct 13, 2005

I have an Access FE app with an Access BE.

I need urgent suggestions as to how to prevent access to the database window even when the SHIFT key is pressed when loading the app.

This is very important so as to increase data security and prevent unauthorised data change by users.

Thanks for the expected response.

Peter
Nigeria

View 2 Replies View Related

Stop The Editing Of The Backend Database

May 12, 2006

How can you stop people editing the data in the backend database from the linked table in the front end?

The back end is passworded but you can still change data manually from the front end.

Can this be stopped?

View 6 Replies View Related

I Cant Open Database For Editing Queries

Nov 30, 2007

I have got an complete Access database with an "Autorun" from a company.
I need to change a report definition in this database.

Wher can I find such a utility that let me open the database in the Database-window, so that I can edit reports and queries in the database?

It is an Access 2000 database I think.

View 4 Replies View Related

General :: Database Freezes After Editing A Form

Aug 6, 2013

I have many forms in my database, three of which completely freeze the database if I edit the slightest thing on them. These forms are all the same, and are unique to any other type of form in my database.

An example of one of the forms is the following:

The form is an "Edit Record" form which allows the user to edit a record directly from a form without going into the table. It is only possible to bring up the edit form by going to the main navigation form that consists of various buttons which a user would press, in this case the user would press the "Edit Record" button. This brings up a unique search form that allows a user to search for a record to edit. The user types their search parameter into the form and once the "search" button is pressed it will bring up the record with all the details in a different form.

Note - The search form is linked to the table where the edit record form is linked to a query.

My problem is this:

I have three buttons on the form; Exit, Cancel & Finish Editing.

All I wanted to do was to ammend the code of the buttons so that "Finish Editing" wouldn't close the form onced pressed and that "Cancel" would simply undo the actions of the user instead of undo and then close the form.

I know exactly how to do the ammendments. But, once completed if you return to the main navigation and click on the "edit" button the search form appears and allows you to type in the search parameters, but once the "Search" button is clicked the search form closes and you are returned to the main navigation where you are unable to click anything in access or even close the programme.

View 3 Replies View Related

Modules & VBA :: Editing Data From Database In Textbox Taken From Subform

Jul 11, 2013

In my form I have a subform, which displays A, B, C. Then information C is displayed in textbox. User should have a possibility to modify this data in order to modify data in database.

I am able to display information C in text box based on this subform. However it is uneditable, although property of enabled is yes and locked is no.

It seems to me, that it is impossible to edit data because it is taken not directly from database but from sub form, so I make special query which takes data directly from database however I lose an event which is based on selecting proper record from subform (there is only onEnter and onExit events)

View 5 Replies View Related

Database Users And Passwords

Aug 2, 2005

I would really like to have a better understanding of the secrurity that comes with access. I would like my DAP to be able to log in with the previleges given for each user. I would also like these previledges to work when someones opens the database with access, however, whenever I set the secureity stuff, copy the database to the fileserver, I can then open it with another computer without any problems. Why is this? Thanks guys, I'n new here.

View 2 Replies View Related

Logging Out Users To Database

Apr 3, 2006

Is there a way in Access to logout users from a database in order to make updates without having to setup a FE/BE situation? My company is using Novell Client 4.90.0.0 SP1a. I have read some logs where you choose File --> Open (exclusive), but I do not have that option (using Access 2000). Any other thoughts?

View 6 Replies View Related

Multiple Users In One Database

Jul 19, 2006

Is Access set up to handle multiple people entering data into the same table?

We are processing returned mail and enter all the bad addresses into an Access table. The data is simply entered into the bare table. Can two people be doing this at once without the risk of compromising the data?

View 4 Replies View Related

Deploying Database To Users PC By CD-ROM

Jan 18, 2007

Hello


I have created a DB which has a front end which is linked to a backend where all my datas kept.

I want to install my database via cd-rom using and install wizard. If i ask the install wizard to c:/user/programs/ would i have any problems with the links between the front end and back end?

If i would how a problem with the links to the front end how would i cover come this?

View 7 Replies View Related

Multiple Users One Database

May 8, 2007

Hi Guys

I wonder if anyone could give me some advice on a problem i have with an access database.

I have designed a database and a data input form to collect data that is input by workers, the problem i have is that only one person can enter a record at a time.

I curently use 2 replicated database's on two seperate computers and run the synchronisation once one person has finished so that all the changes are replicated to the 2 different databases

If there is any other easier way to accomplish this i would be very greatful if anybody can shed some light on the subject.

Thanks
Brad

View 3 Replies View Related

Database Not Working For Some Users

Aug 7, 2007

I am having a problem that I have never encountered before and thought I start here. Using Access 2003
I have a database that resides on a main computer and my users connect via the network to this database. On my forms I have command buttons that run simple macros to copy and paste data from one field into another. The macro contains a GOTOCONTROL, to copy the contents and then moves to the next field. Then I have SEND KEYS command and wait is set to yes, then PASTE. When they press the command button it seems like the SENDKEYS is not waiting then the macro halts becuse it is saying the COPY command is not available. This happens to all users except for one. That other user is also connected to the database via the network. I checked the OPTION for all the computers that are connected and they all match to the one computer that works. The one computer that does work is the one that was used to write the database but the databse is now on another computer that is always on. The funny thing is that if I were to change any option under Forms/Reports, the macro's will work for a while then stop. I did do a compact and repair several times but this has no effect. Sorry for rambling but I am just frustrated because this databse worked fine at another account of mine and I just can't figure out why this is happening.
Thanks in advance for your reply.

I now haw 2 laptops that work and 2 desktops and 1 laptop that don't.

VAD

View 13 Replies View Related

How To Limit Users In A Database

Oct 27, 2006

I have a small database for doing some tracking and some reporting. I want to be able to allow everyone to view the data and also to print reports. However, I also need to limit who is able to enter data into this application.

I don't want to build a login form for the application...I want to be able to limit users based on their Windows Login name, which I would have in a table. The first thing I would do is compare their Windows login name against the table, and then put in code such as "If table name = suchandsuch then you can't do suchandsuch, but if tablename = blahblah then you can do something."

Is something like this doable? If so, how might I go about getting started with this train of thought?

Thanks to any and all who respond..... I appreciate your time and knowledge!!

View 7 Replies View Related

Logging Users Of A Database.

Feb 7, 2005

I have a database set up that utilizes the user level security offered by Access. So basically everyone logs into the database, entering their user name and password.

Is there a way that I can log the currentuser() to a table when they sign in? And is it possible to assign a time stamp as well?

Any help or direction is much appreciated.

View 2 Replies View Related

General :: Do Not Want Users To Log Into Database

Aug 4, 2013

The database: is for tracking computer issues (this part is complete), also I need to show the on call roster (mostly complete)... This will also have a time sheet that I need to be completed once a fortnight, however I would like it to auto populate the staff members logged information (I will get into that a little later).

Question 1: I do not want the users to log into the database, however I do want the database recognise who they are from their windows logon details.

View 8 Replies View Related

Using Multiple Users For A Database?

Jun 29, 2012

I created a database and a form on it that i enter myself right now. I am planning on using this database on several PCs with different users. Currently I have this database on the network, but when multiple people try to access it at the same time they cannot access without saving a separate copy or just having read access.

View 3 Replies View Related

Multiple Users In Same Database

Jul 8, 2015

I need to put my Database to work with multiple users.

1- I already have divide the database;
2- I already have made the file accde of the front-end file;
3- I already have put the two files: back-end and front-end on the network server.

My problem now is that if I open a Form to register data the other User can't open the same form to add data. What I must do to work in the same form with multiple user?

View 14 Replies View Related

How To Get Multiple Users On One Database

Mar 8, 2013

I have my database on a server and i want 2 or more users to access that database from different stations at the same time. I am using MS Access 2010, what do i need to do and how do i do it to allow more than one person on my database? The database contains 2 tables - table 1 has 1,450,00 records - table 2 will be populated with some of the records from table 1.Table 2 is empty.3 sub-forms - 1 main form and 1 report (for labels).

Both tables have the same fields, but not all the fields are filled in and each user will be filling in the fields required.Each record is a case, and no more than one user will be assigned to a case.I need at least 2 users working on my database at the same time, i would like to have 4 users working on this database if possible.

View 4 Replies View Related

Users Unable To Open Database

Feb 25, 2008

I have two databases that have been split, and both back ends are in a shared folder on the server that only a few people have authorization to access. One of the front ends is accessed off another shared folder, and the other is saved to each person's desktop. They have been up and running for months, and I've had no problems with users not being able to access data from the back end.

The other day, I requested access to this protected folder for four people, which was granted. But, since the time it was granted, neither database will open unless the user has authorization to access the protected folder. They get an error that says the database is already opened exclusively or they don't have authorization to view its data.

I've created another test db and split it into the same folder, but my users are getting the same error.

Any help you can provide would be much appreciated.

Thank you,
Mike

View 2 Replies View Related

Access A Database With Multiple Users

Mar 18, 2008

how can i change a database to allow multiple access?

is there a downside to doing this?

eg. if two or more people are trying edit the same feild???

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved