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 SendInput has finished sending text instead? Currently if the user is typing as the text is sent to the target application, the final result may be inconsistent. Thanks.

link|improve this question

17% accept rate
2  
What kind of user input? From a console application or a Windows application or a website? – Ronald Wildenberg Aug 28 '10 at 10:04
feedback

1 Answer

It sounds like you're looking for BlockInput?

http://msdn.microsoft.com/en-us/library/ms646290(VS.85).aspx

link|improve this answer
Would this prevent SendInput from working, though? – Steven Sudit Aug 30 '10 at 0:33
@Steven: no, as long as you're doing it from the same thread, so you would do BlockInput(true); SendInput calls (however many); BlockInput(false); As per the MSDN page: When input is blocked, real physical input from the mouse or keyboard will not affect the input queue's synchronous key state (reported by GetKeyState and GetKeyboardState), nor will it affect the asynchronous key state (reported by GetAsyncKeyState). However, the thread that is blocking input can affect both of these key states by calling SendInput. No other thread can do this. – James Manning Aug 30 '10 at 10:56
Sounds like it's not an solution to the OP, but it's interesting. – Steven Sudit Aug 30 '10 at 12:40
@Steven: can you explain why it's not a solution to the OP? Perhaps I'm missing something. – James Manning Aug 30 '10 at 14:18
Or perhaps I'm misunderstanding, but it sounds like her use case involves sending text to another process while preventing inadvertent user input. This would mean that she does not have control over the thread that needs to have its input blocked. – Steven Sudit Aug 30 '10 at 20:01
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.