|
-
Apr 7th, 2001, 09:41 AM
#1
Thread Starter
Member
-
Apr 7th, 2001, 10:02 AM
#2
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?
-
Apr 7th, 2001, 11:45 AM
#3
Thread Starter
Member
...
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...
-
Apr 7th, 2001, 11:56 AM
#4
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.
-
Apr 7th, 2001, 04:05 PM
#5
*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
-
Apr 7th, 2001, 04:12 PM
#6
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 ( .).
-
Apr 7th, 2001, 05:20 PM
#7
Ahhh, it makes sense now I thought he wanted some sort of API to get the text for the window.
-
Apr 7th, 2001, 06:15 PM
#8
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!
-
Apr 8th, 2001, 02:29 PM
#9
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|