Vb.net sendkeys, letters duplicate?

前端 未结 2 511
再見小時候
再見小時候 2021-01-04 19:20

I created a simple test with SendKeys, and tried both SendWait and Send.

 Private Sub Form1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handle         


        
2条回答
  •  死守一世寂寞
    2021-01-04 20:04

    In your app settings (app.config in a Visual Studio solution, or .exe.config when located side by side to the application), add the following as child of the element:

        
            
     
    

    If that doesn't work, try:

        
            
     
    

    Source: SendWait() [MSDN]

    "... As a result, the SendKeys class may behave differently on different operating systems ..."

提交回复
热议问题