Send keys with user input

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
 
P

Per Jessen

Hi

Try this:

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

Regards,
Per
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top