bonekrusher
Registered User.
- Local time
- Today, 08:31
- Joined
- Nov 19, 2005
- Messages
- 266
Hi, I am trying to list all active users on my DB. I need this so I can tell who is on when I need to edit the db. Currently I log the users in a table. I want to know how to list all the active users. This code only shows me being logged in. Any ideas?
Code:
Dim user
Dim i
user = Environ("UserName")
For i = 0 To 20
If user <> user Then
user = user & "; " & user
Else: End If
Next
MsgBox user