List group user : Workspaces « Access « VBA / Excel / Access / Word






List group user

 

Public Sub ListGroupsForUser()
    Dim myWorksheetNew      As Workspace
    Dim grpUG       As Group        ' user group
    Set myWorksheetNew = DBEngine.CreateWorkspace("AdminWorkspace", "Admin", "")
    Debug.Print "Groups for user " & CurrentUser() & " are:"
    For Each grpUG In myWorksheetNew.Users(CurrentUser()).Groups
        Debug.Print grpUG.Name
    Next
    myWorksheetNew.Close
    Set myWorksheetNew = Nothing
    Set grpUG = Nothing
End Sub

 








Related examples in the same category

1.Get Workspaces count and name
2.Get database from Workspace
3.Reference recordset and table with DBEngine
4.Reference database from DBEngine
5.Lists the tables in the LIBRARY database
6.To show that the CurrentDb function adds to the Databases collection
7.Use DBEngine to reference tables and its columns
8.Opens Database in exclusive mode with read/write access
9.Open an Access database on the server
10.Closing a Database
11.Makes the admin account the owner of the new workspace.
12.Closes the Workspace