DaniWeb IT Discussion Community

DaniWeb IT Discussion Community (http://www.daniweb.com/forums/index.php)
-   Visual Basic 4 / 5 / 6 (http://www.daniweb.com/forums/forum4.html)
-   -   How to extract user network login name with vbscript? (http://www.daniweb.com/forums/thread23546.html)

pomahony May 14th, 2005 1:03 pm
How to extract user network login name with vbscript?
 
Hi,
I have an application (a web browser control within a vb6 form) which shows users their weekly schedule. At the moment they have to input their user id to see the schedule. What I want to do is have their schedules automatically appear according to their network login. I know there is a vbscript for determining the users network login name. Most of the users will be using NT4 with novell client. But they will soon be moving to XP/ADS. I need a script that works in both environments. I would appreciate if someone can help on this.

:lol:

Comatose May 14th, 2005 3:12 pm
Re: How to extract user network login name with vbscript?
 
The only thing that I can think of, is that there has to be something in the registry that holds this information. I mean, VBScript has a method of an object that can get the name of the user currently logged in, but I dunno about retrieving novel's login.... I'll see if I can't find the registry key, but I don't have novel, so it's all google.

vhinehds May 18th, 2005 2:23 am
Re: How to extract user network login name with vbscript?
 
hi, just a thought...

i can extract users login name by using VB's SysInfo control, here's how:


load the SysInfo control by doing this:

1. In the VB IDE click "Project" upper menu.
2. Then "Components"
3. From the list, search for the "Microsoft SysInfo Control" and click
it.
4. Put the control on the form.



then declare first...
Public sysInfo2 As New ActiveDs.WinNTSystemInfo 'declaration for using
'the active directory
'type library
Public SysUser As String


'get the username

SysUser = sysInfo2.username
text1.text = trim(Sysuser)


hope this one works for you...good luck.

Comatose May 18th, 2005 7:33 am
Re: How to extract user network login name with vbscript?
 
:) Nice One.


All times are GMT -4. The time now is 9:18 am.

Forum system based on vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
©2003 - 2009 DaniWeb® LLC