Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# Wait for SendKeys to finish sending before executing next line of code?

Tags:

c#

.net

sendkeys

I think the title explains what I am asking.

I need the SendKeys to finish sending the keys before the DoMouseClick method or my entire program is useless.

// Simulate the keyboard typing the value of 'i'
SendKeys.SendWait(i.ToString());

// Simulate mouse click so the Accept button in-game is clicked
DoMouseClick();

I tried using Thread.Sleep but I was hoping you guys had some better suggestions on how to fix my problem.

like image 884
DooMLaZyPro Avatar asked Jul 19 '15 23:07

DooMLaZyPro


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr. Stroustroupe.

What is C in C language?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.

Is C language easy?

C is a general-purpose language that most programmers learn before moving on to more complex languages. From Unix and Windows to Tic Tac Toe and Photoshop, several of the most commonly used applications today have been built on C. It is easy to learn because: A simple syntax with only 32 keywords.


1 Answers

Use Input Simulator. It's much better than SendKeys, and handles the edge cases internally.

Install-Package InputSimulator

var simulator = new InputSimulator();

//simulate what you need
simulator.Keyboard.KeyPress(VirtualKeyCode.VK_I);
simulator.Keyboard.TextEntry(i.ToString());

simulator.Mouse.LeftButtonDoubleClick();
like image 69
Xenolightning Avatar answered Sep 28 '22 19:09

Xenolightning