The sendinput tag has no wiki summary.
3
votes
1answer
102 views
How send unicode character to active application?
I need something like SendInput in Windows API.
I see this method, I don't know there is anyway to convert unicode character to virtual Key code.
CGEventRef CGEventCreateKeyboardEvent (
...
3
votes
2answers
302 views
SendInput and 64bits
Below is an extract of some code I am using to simulate key presses via the SendInput API. This works correctly if I set my application to compile for an x86 CPU, but doesn't work for x64 CPU ...
3
votes
2answers
1k views
SendInput() isn't “sending” the correct shifted characters?
void WriteChar(char c)
{
INPUT input = {0};
input.type = INPUT_KEYBOARD;
input.ki.wVk= VkKeyScanEx(c, GetKeyboardLayout(0) ) ;
SendInput(1,&input, sizeof(INPUT));
}
...
2
votes
2answers
101 views
How to send a string to other application including Microsoft Word
I was trying to accomplish this but did not get good results. I used GetForegroundWindow(), AttachThreadInput(uint,uint,bool) and GetFocus() functions to send the strings to another window. It works ...
2
votes
1answer
369 views
Simulating XButton input using SendInput
I using SendInput to simulate mouse input and so far I can successfully simulate left, right and middle clicks. However, I cannot seem to simulate the xButtons properly. I am defining an input ...
2
votes
1answer
3k views
Simulating Keyboard with SendInput API in DirectInput applications
I'm trying to simulate keyboard commands for a custom game controller application. Because I'll need to simulate commands in a DirectInput environment most of the usual methods don't work. I know ...
2
votes
1answer
2k views
WH_MOUSE_LL Hook doesn't get called for injected events (mouse_event, SendInput)
My code uses a WH_MOUSE_LL hook to initially suppress all mouse input, unless the dwExtraInfo property is set to a certain value. The program is also registered for raw input for mouse devices, so ...
1
vote
1answer
69 views
Windows API Fails to Create “Input Messages”/events for Certain Applications (i.e. Mozilla Firefox)
I'm attempting to emulate user clicking and mouse-moving, specifically in Mozilla Firefox, in a Windows 7 environment. The solution I frankensteined together from various tutorials, forum posts, and ...
1
vote
1answer
137 views
Can't copy russian(cyrilic or Unicode) symbols using SendInput(Edit1.Text);
procedure SendText(ds:string);
var
TI: TInput;
KI: TKeybdInput;
i: integer;
begin
TI.Itype := INPUT_KEYBOARD;
for i := 1 to Length(ds) do
begin
KI.wVk := Ord(UpCase(ds[i]));
...
1
vote
1answer
448 views
How Do I Use SendInput in Delphi?
I was using the Mouse_Event Function in Delphi 2009, but the Delphi documentation says this function has been superceded and to use SendInput instead.
The Delphi SendInput documentation defines the ...
1
vote
1answer
563 views
Send keyboard and mouse events to DirectX application in C#?
I need to send global keystrokes and mouse events to another application, which is coincidentally using using DirectX. (No controls/handles other than the window itself)
For example, I need to hold ...
1
vote
1answer
220 views
When using SendInput how can I tell when the receiving window has received and processed the messages?
I'm using the Input Simulator library to simulate input to another application using C#, this uses the SendInput API calls. Does anyone know if there is a way I can monitor the windows message queue ...
1
vote
0answers
198 views
Convert KeyEventArgs to KEYDBINPUT struct
I am working on a networked system (in C#) where on one computer I receive keyboard input via a low level hook and then transmit the input to another computer where it has to be injected.
The hook ...
1
vote
1answer
734 views
Cant send a single key function to remote desktop :\
After a really deep drill down the web, this is my code which unfortunately doesnt send the keys as upper case :/
MapVirtualKey Implementation:
const uint MAPVK_VK_TO_VSC = 0x00;
const uint ...
1
vote
0answers
129 views
SendInput not working in VS 2008 unit tests
I am using SendInput() for the first time, having only heard of it about a week ago. I have written a test using SendInput() to hold down the CTRL key. After a great deal of pain, I got this to work ...
1
vote
1answer
823 views
How do I test SendInput in c#
How can I tell if my call to SendInput is working properly? I have a small snippet below, and the message never seems to get hit. SendInput() returns 1, and there's no errors, so I assume that the ...
1
vote
2answers
1k views
Way to turn on keyboard's caps-lock light without actually turning on caps-lock?
I'm writing a program that uses caps-lock as a toggle switch. It would be nice to set the LED of the key to show that my program is on or off, like the capslock key does naturally.
I know that I ...
1
vote
1answer
686 views
Can the sendinput API simulate a keyboard key being held down during some time?
My app will need to simulate a key being held down during some time. I don't know how many time. Can I use the sendinput API for this?
1
vote
2answers
2k views
sendinput to directinput(like games)
I'm trying to simulate keypress to my games that use direct input(I guess).
I googled around and I found out the method SendIput().
It work fine if I try to send keypress to notepad.exe but nothing ...
0
votes
0answers
9 views
SendInput API fails inside VirtualBox Guest
I've no problem automating a windows application using InputSimulator library (http://inputsimulator.codeplex.com/) when working with a REAL machine.
When I move all the system to a virtualbox guest ...
0
votes
1answer
122 views
Qt - c++ simulate keypress
I'm trying to create a simple bot in Qt and need therefor a way of simulating keyboard presses OUTSIDE the Qt application itself.
I've successfully made this possible by using the "old" keybd_event
...
0
votes
2answers
84 views
Key Stroke simulation fails with windows desktop is locked
I have an application that uses the Windows Input Simulator. I use this to simulate a Ctrl-S keystroke to the parent application. When the windows desktop is locked an exception is raised
...
0
votes
1answer
99 views
Can you explain what each line of the C++ function is doing? It sends keystrokes but I am confused by how
I was making a program to send keystrokes to another window and I got it all working, but I had to go online and find a function to do the keystroke portion itself. It works but I have no idea what it ...
0
votes
0answers
175 views
Get text from tEdit (in Delphi) using SendInput API to application where cursor is
Is it possible to insert text from tEdit into other apllications such web browsers, using Delphi+SendInput?
Would you help me with code?
Thanks!
PS: this source is about inserting unicode symbols ...
0
votes
1answer
113 views
My app won't recognize keystrokes sent from SendKeys or SendInput, but does from the Keyboard
I've got a homegrown app (Master) that has a bunch of hotkeys defined. I need to automate the app with another external app (Control). I cannot rebuild the Master app, it runs, is already installed ...
0
votes
1answer
279 views
Send key “MediaPlayPause” to an application without setting focus to it
I am creating a program that will send media key inputs (such as MediaPlayPause, MediaNextTrack, etc) to an application that I have the IntPtr of. Sort of like a virtual remote control.
So after ...
0
votes
3answers
311 views
C# InputSimulator wrapper - how to use it?
I want to simulate keyboard click for a external program.I've tried SendMessage, PostMessage, SendKeys but they do not send the key to one specific program. So i wanted to try SendInput and i have ...
0
votes
0answers
199 views
Generate keys with SendInput
I'm trying to generate key press/release using SendInput and having trouble with two particular keys: Num-lock and Pause/Break. I have been using KEYEVENTF_SCANCODE tag and according to MSDN, when ...
0
votes
1answer
270 views
SendInput Not working for Games
I am using the following standard GenerateKey Code :
void GenerateKey ( int vk , BOOL bExtended)
{
KEYBDINPUT kb={0};
INPUT Input={0};
// generate down
if ( bExtended )
kb.dwFlags = ...
0
votes
2answers
336 views
Simulating a drag & drop operation using SendInput
Can SendInput be used to simulate a drap & drop operation?
I've got an application that accepts files of a certain format that are dropped on it, but not from the command line, and I want to ...
0
votes
1answer
832 views
SendInput Keys in Win32 & Win64 machines
I have used sendInput() under xp 32bits using webservices to push F5 of current focused windows. Now under Vista win64 i can“t obtain this result. Some articles point uint problems using 4bits or ...
0
votes
2answers
483 views
C# - SendInput() from Windows Service not working but returns 1 - Win03
This is a somewhat unusual problem. I'm presently working on an effort to automate an Office application. Basically the issue is that my app is able to interact with the Office app correctly when I ...
0
votes
1answer
396 views
How to block user input when sending text with SendInput
I'm using SendInput (in C#, using pinvoke) to send text to another application. How can I block the user input so that any text that the user may type when SendInput is working is added after ...
0
votes
3answers
447 views
How to send shortcut to another application in c++ in MS Windows?
My question is how to send shortcut from c++ to another application. Let's say for example that the notepad is open, and I want send to them shortcut like CTRL+P, or more complexive shortcut like ...
0
votes
2answers
1k views
SendInput scan code on Windows 7 x64
I am working with a WPF application sending keys to a game. I opened spy++ to observer s as a key press on the keyboard. I then press my button on the application and I noticed a different scan code ...
0
votes
2answers
915 views
Could not send backspace key using ::SendInput() to wordpad application
I have used sendinput() function and windows keyboard hooks to develop a custom keyboard for indian languages.
Project is in google code here: http://code.google.com/p/ekalappai
The keyboad hook and ...