Results 1 to 9 of 9

Thread: AoL API...

  1. #1

    Thread Starter
    Member
    Join Date
    Jan 2001
    Location
    I thought you knew!!
    Posts
    38

    Wink

    Hey if you still use AoL *fake cough* sucks *fake cough* could you give me the API for the PW box where you login to AoL..

  2. #2
    Megatron
    Guest
    API for PW box? Be more specific. What do you want to do with it? Get the window text? If so, does the GetwindowText message work?

  3. #3

    Thread Starter
    Member
    Join Date
    Jan 2001
    Location
    I thought you knew!!
    Posts
    38

    ...

    I did specify... I said the PW box where you login,,,in other words the box where you put your PW to get on to AoL.........and I just want the API for...

  4. #4
    Megatron
    Guest
    could you give me the API for the PW box where you login to AoL
    Yes, I know that part, but what kind of API? There are many different functions for the password box? e.g: GETTEXT, SETTEXT, GETTEXTLENGTH etc.

  5. #5
    Matthew Gates
    Guest
    *Steps forward* I'm an AOL user .

    Here you go:


    Code:
    Private Declare Function FindWindowEx _
    Lib "user32" Alias "FindWindowExA" (ByVal hWnd1 As _
    Long, ByVal hWnd2 As Long, ByVal lpsz1 As String, _
    ByVal lpsz2 As String) As Long
    
    Private Sub Command1_Click()
        
        Dim aolframe As Long
        Dim mdiclient As Long
        Dim aolchild As Long
        Dim aoledit As Long
        aolframe = FindWindowEx(0, 0, "aol frame25", vbNullString)
        mdiclient = FindWindowEx(aolframe, 0&, "mdiclient", vbNullString)
        aolchild = FindWindowEx(mdiclient, 0&, "aol child", vbNullString)
        aoledit = FindWindowEx(aolchild, 0&, "_aol_edit", vbNullString)
    
    End Sub

  6. #6
    Matthew Gates
    Guest
    By the way Megatron, I think he meant handle, not API, I could be brong, but there is no API function for the AOL PW box (.).

  7. #7
    Megatron
    Guest
    Ahhh, it makes sense now I thought he wanted some sort of API to get the text for the window.

  8. #8
    Matthew Gates
    Guest
    In order to understand an AOL question, you must have AOL Megatron.

    But I suggest that you don't get it. It sucks. I mean, it's okay, since you have to use it. But if you are on a cable/dsl/t1/t3/oc...,etc. STAY WITH IT!

  9. #9
    GuitarMan
    Guest

    Question A little off topic but never mind

    I had a program that all alowed you to find the password that is stored, such as for the internet, but is displayed as ****'s. I would like to recreate this pogram any ideas on how to do this.

    P.S. You had to drag a icon over the text box.

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