Advertisement

1 - 10 of 58 containing alltags:("keybd_event") (0.001 seconds)
I would like to print a frame from IE 4.0 when user clicks the print button. How would I do this? Using a ActiveX component. If so - which one? If possible I'd like to do it without any programming...
Zones: AuthoringDate Answered: 04/01/1998 Grade: D Views: 0
I have a problem with keybd_event. I have Swedish keyboard and I want to use keybd_event to send "a" and "A" and how to send #!%&/()?;:,.-'* and send F1,F2,F3 and so on. Please help me. /Fredrik
Zones: Windows ProgrammingDate Answered: 01/11/1999 Grade: B Views: 0
I'm writing a program that needs to send text to another application which I did not write and can not change.  I've been searching for ways of sending the text to it and have researched the SendMe...
Zones: Visual BasicDate Answered: 04/02/1999 Grade: A Views: 0
Hello I am using the keybd_event function to simulate keystrokes.  Here is the code: int n; for (n = 0; n < (signed) strlen (string); n++) { vk = VkKeyScan (string[n]);   keybd_event (LOBYTE (vk)...
Zones: C++Date Answered: 08/19/1999 Grade: A Views: 5
What is the difference between the following:  These all send an Enter key 1.)  keybd_event vbKeyReturn, 0, 0, 0 2.)  keybd_event 13, 0, 0, 0 3.)  Public Const VK_RETURN = &HD      keybd_...
Zones: Visual BasicDate Answered: 02/22/2000 Grade: A Views: 0
Why does the following 3 lines, if printed in Wordpad, print only "t" (small t) and not "T.,"     Keybd_event(Ord(Upcase('T')), 0, 0, 0 );     Keybd_event(Ord(Upcase('.')), 0, 0, 0 );     Ke...
Zones: Delphi ProgrammingDate Answered: 05/31/2000 Grade: A Views: 0
I am trying to send shifted characters to another app. e.g. "$", "R" ...  I can get any lowercase characters to go but I cna't get the "SHIFT" of any key to work.  I keep comming across "HiWord" an...
Zones: Visual BasicDate Answered: 02/08/2001 Grade: A Views: 0
How to simulate SHIFT-END key press ? I want to select text in TEdit by pressing SHIFT-END key. This method doesn't work. Is there some else method ? keybd_event(VK_SHIFT, MapVirtualKey(VK...
Zones: Delphi ProgrammingDate Answered: 12/14/2002 Grade: A Views: 8
How can i send the phrase let's say "good?" i can send "good" but how will i send the "?" it goes as "/" which is the representative key on the keyboard.
Zones: C++Date Answered: 11/26/2003 Grade: A Views: 0
Hi, I want to simulate keyboard, so it will press alt+66 (it should show B):         keybd_event(VK_LMENU, 0, 0, 0);         keybd_event(VK_NUMPAD6, 0, 0, 0);         keybd_event(VK_NUMPAD6...
Zones: C++Date Answered: 04/14/2003 Grade: C Views: 9