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...
http://www.experts-exchange.com/Web_Development/Authoring/Q_10042878.html
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
http://www.experts-exchange.com/Programming/System/Windows__Programming/Q_10116102.html
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...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_10143028.html
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)...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10196274.html
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_...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_10297999.html
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...
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_10370856.html
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...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_20074582.html
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...
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_20425492.html
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.
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20524193.html
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...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20583599.html
Zones:
C++Date Answered: 04/14/2003 Grade: C Views: 9