|
-
Sep 8th, 2012, 08:54 AM
#1
Thread Starter
New Member
WinApi: ENTER is not send
Hi,
I'm trying to write a text into a textfield and simulate the ENTER button. This field is inside a java applet.
However, ENTER is ignored. The text is written in the field, but ENTER is not pressed. Can you please help me?
The site is knuddelz.de, I want to fill out the fields and press enter.
vbnet Code:
SendMessage(&H500932, WM_SETTEXT, 0, "myNickname")
SendMessage(&H1E05FE, WM_SETTEXT, 0, "myPassword")
SendMessage(&H160A52, WM_SETTEXT, 0, "myRoom")
SendMessage(&H160A52, WM_CHAR, WM_ENTER, 0&)
In case of success, a small window would appear.
Thanks.
-
Sep 10th, 2012, 04:20 AM
#2
Re: WinApi: ENTER is not send
SendMessage(hWnd, WM_CHAR, 13, 1835009)
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
|