Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in RPA by (5.3k points)

I am currently working with one application that requires to press Numpad Enter (Keycode 13 Location: 3) in specific situations. Regular Enter (Keycode 13 Location 0) does not work.

I have tried to use: Global Send Keys: with {ENTER} Global Send Keys Event: with {ENTER}, ~, {RETURN} VB code stage with:

My.Computer.Keyboard.SendKeys("{ENTER}", True)

They all seems to Press KeyCode 13 Location 0. And I need to press Keycode 13 Location 3 specifically.

Does anyone have an idea how to create in BluePrism functionality to press KeyCode 13 location 3 button?

1 Answer

0 votes
by (9.5k points)

Dim autECLPSObj As Object autECLPSObj = CreateObject("PCOMM.autECLPS") autECLPSObj.SetConnectionByName ("A") autECLPSObj.SendKeys ("[enter]")

Basically for PCOMM there is a list of mnemonic keys, you can send with this method. The only thing you need is a namespace: Microsoft.VisualBasic.Interaction It works without any issue and you can use all of the other autECLPS type of object!

Related questions

0 votes
1 answer
asked Jul 25, 2019 in RPA by noah kapoor (5.3k points)
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer

Browse Categories

...