如何创建一个自动填充其他程序凭据的VB程序

时间:2015-04-03 07:31:19

标签: vb.net login autocomplete

我希望创建一个VB程序,可以自动填写另一个程序的凭据(用户名和密码) 这是我希望填写凭证的程序:

enter image description here

我该怎么做?

我想尝试SendKeys 似乎我需要使用鼠标单击该字段以填充它。

我希望有人可以帮助我 Ps:我正在使用VB 2010

1 个答案:

答案 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")