Send keys with user input

  • Thread starter Thread starter sunspot27
  • Start date Start date
S

sunspot27

I'm using sendkeys to send some numbers to a java based back office
system. It works perfectly on sending the numbers however I'm looking
to create a text box on a user form so that the user can input the
numbers to send to the back office system.

Application.SendKeys ("12345"), True

Could someone help me out?

Thanks
 
Hi

Try this:

KeyString=Inputbox("Enter numbers to send back")
Application.SendKeys (KeyString), True

Regards,
Per
 
Back
Top