I have created a file that has database-level security. I have everything setup via forms. No user has access to the tables. I want to take the security one step further and don’t know if I can. I want to, upon launching a form this lets users updated their hours, limit the records that the user can view to their own. Can this be done using the existing security system?
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
Allowing limited access to records via a form (Access 97)
Home » Forums » AskWoody support » Productivity software by function » MS Access and database help » Allowing limited access to records via a form (Access 97)
- This topic has 8 replies, 4 voices, and was last updated 22 years, 3 months ago.
AuthorTopicWScchambers@work
AskWoody LoungerJanuary 21, 2003 at 5:44 pm #382143Viewing 0 reply threadsAuthorReplies-
WSDouglas Martin
AskWoody LoungerJanuary 21, 2003 at 7:30 pm #646836It’s a lot easier if you have set up workgroup security (since you can just use currentuser() to get the current user). If by database-level security you mean that all you have done is set a database password, then it’s a little harder (currentuser() will always be “Admin”). If you are using Windows NT or 2000 (might work in XP – I’ve never tried), see http://www.mvps.org/access/api/api0008.htm%5B/url%5D to get the id you logged into NT or 2000 with.
Now, when user creates a record, you’ll need to store the id as part of the record. You can then base the form on a query that only shows records with that id.
-
WScchambers@work
AskWoody Lounger -
WScharlotte
AskWoody LoungerJanuary 22, 2003 at 1:18 pm #646967If the users are logging in with uniquer usernames, it’s easiest to set their permissions up by group and then check to see whether the user is in a particular group allowed to do a particular thing. You have to do the checking from the Admins level. Here’s some code from the NeatCd97.mdb, downloadable from Microsoft:
Function CurrentUserInGroup(GName As String) As Integer ' ' Checks if the current user is in the specified group ' Uses a secure workgroup, so it will run for non-privileged users ' Dim w As Workspace, U As user, i As Integer CurrentUserInGroup = False ' 2nd argument is Admins level user name, 3rd is password Set w = DBEngine.CreateWorkspace("", "Admin", "") Set U = w.Users(CurrentUser()) For i = 0 To U.Groups.Count - 1 If U.Groups(i).Name = GName Then CurrentUserInGroup = True Exit Function End If Next i End Function
-
WBell
AskWoody_MVPJanuary 22, 2003 at 2:40 pm #646982As an alternative to the function Charlotte provided, you could also simply create a form that has a query as it’s data source, and specify the CurrentUser() function as the criteria for the field containing the UserID. Note that you will either need to set that field default to CurrentUser(), or you will need to default it on the form that you do data entry of new records.
-
WScchambers@work
AskWoody LoungerFebruary 3, 2003 at 4:34 pm #650069I am banging my head on this one. Can’t I just use the “On Apply Filter” function built into the form? I have been trying it unsuccessfully, of course. I am trying what seems logical to me: =[Form]![Name]=CurrentUser(), where [Name] is the main field on the form. The user selects their name from a pull down list to update their information for the day. I am just saying that I want the form to not show any records where the name on the record is not the name of the current user. Why can’t I get this?????
-
WSDouglas Martin
AskWoody LoungerFebruary 3, 2003 at 6:46 pm #650090I’m puzzled why you would be using the On Apply Filter event. If you really want to do it with filters, why not just set the Filter directly? However, from the point of view of maintaining the code, I’d agree with WendellB that simply doing your check in the query behind the form would be simplest. No need for the user to select their name; all they would see would be their own records.
If you really want to have your security tight, I’d look into Run With Owner Permission queries as well.
-
WScchambers@work
AskWoody LoungerFebruary 3, 2003 at 7:55 pm #650111 -
WSDouglas Martin
AskWoody LoungerFebruary 3, 2003 at 9:05 pm #650140Have a query as the recordsource of your form (i.e. the first property when you show all properties of the form). It can either be a distinct query that you’ve created separately (so the the name of the query shows up as the recordsource of the form) or it can just be a query “behind” the form (so that when you look at the form’s properties the recordsource starts with SELECT …).
Make sure your query contains all the fields you want your form to be able to display or change, including the field that contains the userid (you must have a field that stores the userid since that is the only way you can “remember” the userid).
As the criterion for the userid field, type currentuser() . That will ensure that the query can only find records where the stored userid matches the current user’s id. You can check your work so far by running the query (click the exclamation mark icon) to see that only the current user’s records are being displayed.
Now, you also need to store the current user’s id when a new record is created. If you only care about who created the record, by far the simplest solution is to put currentuser() as the Default Value property of the field in the table definition (note that that will affect new records only; if you created your Userid field in a non-empty table, you’ll need to manually fix the existing records).
-
-
-
-
Viewing 0 reply threads -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Windows 11 Insider Preview build 27863 released to Canary
by
joep517
7 hours, 54 minutes ago -
Windows 11 Insider Preview build 26120.4161 (24H2) released to BETA
by
joep517
7 hours, 55 minutes ago -
AI model turns to blackmail when engineers try to take it offline
by
Cybertooth
39 minutes ago -
Migrate off MS365 to Apple Products
by
dmt_3904
4 hours, 4 minutes ago -
Login screen icon
by
CWBillow
2 hours, 22 minutes ago -
AI coming to everything
by
Susan Bradley
8 hours, 4 minutes ago -
Mozilla : Pocket shuts down July 8, 2025, Fakespot shuts down on July 1, 2025
by
Alex5723
23 hours, 34 minutes ago -
No Screen TurnOff???
by
CWBillow
23 hours, 55 minutes ago -
Identify a dynamic range to then be used in another formula
by
BigDaddy07
1 day ago -
InfoStealer Malware Data Breach Exposed 184 Million Logins and Passwords
by
Alex5723
1 day, 12 hours ago -
How well does your browser block trackers?
by
n0ads
22 hours, 22 minutes ago -
You can’t handle me
by
Susan Bradley
9 hours, 55 minutes ago -
Chrome Can Now Change Your Weak Passwords for You
by
Alex5723
14 hours, 59 minutes ago -
Microsoft: Over 394,000 Windows PCs infected by Lumma malware, affects Chrome..
by
Alex5723
1 day, 23 hours ago -
Signal vs Microsoft’s Recall ; By Default, Signal Doesn’t Recall
by
Alex5723
1 day, 2 hours ago -
Internet Archive : This is where all of The Internet is stored
by
Alex5723
1 day, 23 hours ago -
iPhone 7 Plus and the iPhone 8 on Vantage list
by
Alex5723
1 day, 23 hours ago -
Lumma malware takedown
by
EyesOnWindows
1 day, 12 hours ago -
“kill switches” found in Chinese made power inverters
by
Alex5723
2 days, 8 hours ago -
Windows 11 – InControl vs pausing Windows updates
by
Kathy Stevens
2 days, 8 hours ago -
Meet Gemini in Chrome
by
Alex5723
2 days, 12 hours ago -
DuckDuckGo’s Duck.ai added GPT-4o mini
by
Alex5723
2 days, 12 hours ago -
Trump signs Take It Down Act
by
Alex5723
2 days, 20 hours ago -
Do you have a maintenance window?
by
Susan Bradley
1 day, 1 hour ago -
Freshly discovered bug in OpenPGP.js undermines whole point of encrypted comms
by
Nibbled To Death By Ducks
1 day, 23 hours ago -
Cox Communications and Charter Communications to merge
by
not so anon
3 days ago -
Help with WD usb driver on Windows 11
by
Tex265
11 hours, 20 minutes ago -
hibernate activation
by
e_belmont
3 days, 9 hours ago -
Red Hat Enterprise Linux 10 with AI assistant
by
Alex5723
3 days, 12 hours ago -
Windows 11 Insider Preview build 26200.5603 released to DEV
by
joep517
3 days, 15 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.