我希望创建一个VB程序,可以自动填写另一个程序的凭据(用户名和密码) 这是我希望填写凭证的程序:
我该怎么做?
我想尝试SendKeys 似乎我需要使用鼠标单击该字段以填充它。
我希望有人可以帮助我 Ps:我正在使用VB 2010
答案 0 :(得分:0)
按照SendKeys
方法,只需尝试模拟制表键即可浏览控件以关注所需的编辑控件,然后发送模拟其余键的所需文本。
示例:
For count As Integer = 0 To X ' x = Many times as required to focus the username textbox.
SendKeys.Send("{TAB}")
Next count
SendKeys.Send("username")
SendKeys.Send("{TAB}")
SendKeys.Send("password")