Reputation: 86
I have developed an automation process using vb macro and for one part of it, I have to use the output of an auto-it script. (I am calling PDF advanced search option in this script) Is it possible to call an auto-it script from vb macro?
Upvotes: 0
Views: 263
Reputation: 49
Use below:
Dim runscript
runscript = Shell("C:\Program Files (x86)\AutoIt3\AutoIt3_x64.exe C:\Test\AutoIt\testfile.au3")
Upvotes: 1