G
Guest
Hi
I can make users into access and make groups
but how can i see the name on the user?
Alvin
I can make users into access and make groups
but how can i see the name on the user?
Alvin
Yes but in that case we are speaking of groups rather than one group. A
function to get a user's groups by user name would be:
Function getGroupsByUsername(ByVal strUserName As String) As Collection
Dim objGroup As DAO.Group
For Each objGroup In DBEngine(0).Groups
getGroupsByUsername.Add objGroup.Name
Next objGroup
End Function
"alvin Kuiper" schreef: