How to automate response to msgbox

后端 未结 6 586
遇见更好的自我
遇见更好的自我 2021-01-25 16:08

I am developing a C# application to automate the running of a legacy VBScript(vbs) file which calls several VB6 .exe files. The .exe files have message box pop-ups that I need t

6条回答
  •  孤城傲影
    2021-01-25 16:39

    You might find AutoIt helpful.

    AutoIt v3 is a freeware BASIC-like scripting language designed for automating the Windows GUI and general scripting. It uses a combination of simulated keystrokes, mouse movement and window/control manipulation in order to automate tasks in a way not possible or reliable with other languages (e.g. VBScript and SendKeys).

    You can develop something using only the AutoIt programming language, or you can drive it from your own applications. My team's using this, with good success.

提交回复
热议问题