Send a character to active window
Hi,
This is what i use to send a character to the active window ...
But it does not work with some software .....
ds2 = active_control_hwnd
chr_a = â
Call PostMessage(ds2, WM_CHAR, Asc(chr_a), 0&)
Does anyone know a better way to send the charcater to the active window .... ?
the programs Outlook Express and Dreamweaver don't get the WM_CHAR command.....
I want to use sendmsessage
Hi,
I want to send it using sendmessage .....
I want to send the backspace key
Hi,
I used it this way and it worked
Call PostMessage(ds2, WM_CHAR, asc(chr_a), 1)
But can't send the backspace key that way ....
I tried the WM_KEYDOWN and WM_KEYUP messages too...
How can I send the backspace key using sendmessage ....?
Is there another way to send the backspace key using sendmessage...