SendKeys difficulty
Yes, you don't want to use SendKeys to accomplish this, it is far to unpredictable. When you use the WebBrowser control, you can fill out a form and submit it by directly programming the DOM. Here's...
View ArticleSendKeys difficulty
To choose the version of SendKeys to use, you explicity follow the steps outlined in the SendKeys documentation. If you need help searching in the documentation, start a new thread.
View ArticleSendKeys difficulty
I apologize for my ignorance, but how do I "choose" ? It was my believe that using the full class name of the call would qualify as "choosing," and the two I mentioned already definitely had different...
View ArticleSendKeys difficulty
You have to choose the version of SendKeys to use. I think you also need at least SP1 of the framework. The documentation tells you how to choose. I used the Windows Script Host scripting SendKeys...
View ArticleSendKeys difficulty
I'm not on a 64 bit system. I've tried Windows.Forms.Sendkeys and My.Computer.Keyboard.SendKeys. Where is the SendInput SendKeys?
View ArticleSendKeys difficulty
The SendInput version of SendKeys seems to work best, particularly on 64 bit systems. Which version are you using?
View ArticleSendKeys difficulty
Hi,I'm writing a program to automate the completion of a web form for an external vendor we use. I'm using tab navigation to go through the form. The problem I have is that SendKeys is being very...
View Article