Ko Nayaki
Ko Nayaki

Reputation: 86

Invoke autoit from vb macro

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

Answers (1)

user3059545
user3059545

Reputation: 49

Use below:

 Dim runscript

 runscript = Shell("C:\Program Files (x86)\AutoIt3\AutoIt3_x64.exe C:\Test\AutoIt\testfile.au3")

Upvotes: 1

Related Questions