Results 1 to 7 of 7

Thread: Novell login

  1. #1

    Thread Starter
    New Member
    Join Date
    Mar 2002
    Posts
    12

    Novell login

    Anyone know how to find the novell client user and pwd from VB application?

  2. #2
    Hyperactive Member ZeroCool's Avatar
    Join Date
    Feb 2002
    Location
    In front of my computer
    Posts
    423
    What Are You Trying To Do?
    Grab Some Ones password On The NetWork?

    I Was Looking Into Doing Some thing Almost the Same Except I Found Out that You Need The Novel Developer Sdk Or Sumtin like That but i had allready Gatherd a bunch of code that will work with out the sdk
    Attached Files Attached Files

  3. #3
    Hyperactive Member ZeroCool's Avatar
    Join Date
    Feb 2002
    Location
    In front of my computer
    Posts
    423
    You Could Fake A Novel Login Screen
    Attached Files Attached Files

  4. #4

    Thread Starter
    New Member
    Join Date
    Mar 2002
    Posts
    12
    Not trying to grab passwords....just needed the usernames. I have a VB application which needs to be auto-logged into with the same userid as the network userid. Any ideas how to get this? What API or library would be needed?

  5. #5
    Hyperactive Member ZeroCool's Avatar
    Join Date
    Feb 2002
    Location
    In front of my computer
    Posts
    423
    Private Declare Function GetUserName Lib "advapi32.dll" Alias "GetUserNameA" (ByVal lpbuffer As String, nSize As Long) As Long

    Public Function GetUserNameApi()
    Dim sBuffer As String
    Dim lSize As Long

    sBuffer = Space$(255)
    lSize = Len(sBuffer)
    Call GetUserName(sBuffer, lSize)
    If lSize > 0 Then
    GetUserNameApi = Left$(sBuffer, lSize)
    Else: End If
    GetUserNameApi = vbNullString
    End Sub

    Try That Api Call

  6. #6
    Hyperactive Member ZeroCool's Avatar
    Join Date
    Feb 2002
    Location
    In front of my computer
    Posts
    423
    Opps

    Its Suspose To Be 'End Function' Not 'End Sub' and Im Not Sure If it Works up anything But 9x

  7. #7

    Thread Starter
    New Member
    Join Date
    Mar 2002
    Posts
    12
    Thanks. Its for Win95 on novell...I'll try it.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width