Problem Sendkeys.Send ({"ENTER"})

0

I am distributing a program on vb.net that uses:

Sendkeys.Send({“Hola”}, true)
Sendkeys.Send({ENTER}, true)

I have written it from memory, I do not know if there is a syntax error but the idea is that ...

The issue is that the program is working well for all users except one in Brazil.

It is the only user in that area that I have and uses Windows 7, apart from having a fairly slow connection (it has 270ms vs 30-80 ms that we have other ping). The problem is that you write the text Hola but it is not sent, that is, the key Enter is not being sent ...

Any ideas?

    
asked by Adrian Hernando Solanas 19.06.2018 в 14:00
source

1 answer

1

Try using the old SendKeys character

Sendkeys.Send ({"Hello"}, True) Sendkeys.Send ({~}, True) 'This is the Line Jump

    
answered by 23.06.2018 в 12:49