More-or-less everything you need is there. Did you follow the instructions? The first chunk of blue code needs to be copied and pasted into a module (select Project menu, and click 'Add Module'). Okey dokey, now, where it says [tt]Debug.Print UName[/tt] in the code (just before the last End Sub), this is where you can do what ever you like with the result; UName is a string containing the username. Change this to [tt]Form1.List1.AddItem Uname[/tt] if you'd like it in a listbox on a form (obviously you'll need a form with a listbox on it for this to work). The three lines at the bottom are just different ways of calling the routine, depending on what it is you want to do. You can use the simplest one ([tt]EnumerateUsers[/tt]). Put this in a Commandbutton's click event.