Jump to content

C# AutoIt Send Function Missing Text


Recommended Posts

Hello. I tried to search for an existing solution but could not find an answer so here it goes.

I find the window handle, then mouse press the text box I'm about to write, then I click on the autoit button to allow the text to send. However, sometimes autoit will not send all the characters and miss one character. For example, if I command it to send "American Express", it will send instead "Amercan Express". I'm not sure what's causing the problem as I'm not flipping between windows. Any suggestions would help. The simple code I have below is

AutoTyper.WinActivate("Internet Explorer", "");

if (AutoTyper.WinActive("Internet Explorer", "") == 1)

{

String textToType = "American Express";

for (int i = 0; i < textToType.Length; i++)

{

AutoTyper.Send(textToType.ToString(), 1);

//Sleep anywhere from 30ms to 60ms

System.Threading.Thread.Sleep(randObj.Next(30, 61));

}

}

Thanks.

Edited by azzkikr1337
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...