Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
-1 votes
1 answer
163 views

What is Autoit equivalent for VBA Collection object?

What is Autoit equivalent for VBA Collection object? Dim CollArrays As New Collection 'VBA Collection How can create collection of 2D arrays with Autoit? Add more details. #include <Array.au3> ...
Spec86's user avatar
  • 13
-1 votes
2 answers
1k views

Using Excel VBA to load a website that is incompatible with IE11

In Excel VBA to load a website and get it into a sheet I have been using the following: Dim IE As Object Set IE = CreateObject("InternetExplorer.Application") IE .navigate "https://...
drb01's user avatar
  • 311
0 votes
1 answer
233 views

How to make this hard-coded file path dynamic?

The code should pass "File Path" in to the File Picker dialog window and upload/attach the file. I'm consistently getting an error. VBA Code (error at Shell and asking for Object): Sub ...
Reeyal Hayder Imam's user avatar
0 votes
0 answers
154 views

How to Click on ActiveX controls in Word Using AutoIT?

I am trying to automate the clicking of activeX controls in word using AutoIT. Method 1: Get all InlineShapes on the page See if their type is ActiveX control ( type == 5) get their locations ...
tvishwa107's user avatar
0 votes
0 answers
117 views

Error in "combobox" mouse click in external autoit interface

I'm trying to establish a mouse click in a combobox external GUI which falls in a Window.8 class. The details of the autoit parameters are in the image AutoIt info parameters External GUI image, ...
Suvann's user avatar
  • 9
0 votes
1 answer
275 views

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 ...
Ko Nayaki's user avatar
0 votes
1 answer
592 views

How open the AutoIt script from excel workbook and after that parent Workbook get close?

In my current project, Excel macro open AutoIt script using a function Call Shell("location of autoit script"). For proper functioning of AutoIt script it's need to be close parent Excel workbook, ...
Dinesh Vilas Pawar's user avatar
0 votes
1 answer
2k views

Running Autoit script from Excel VBA

Im trying to run autoitscript from excel vba using a button click. I wanted to run notepad1.au3 script from an excel sheet. i copied the script into the same directory as excel sheet. I wrote the ...
Steeve102000's user avatar
5 votes
2 answers
2k views

Execute AutoIt and wait for finish

I'm needing to implement a macro that runs after autoit and finished running the program it runs the rest of the macro. I tried the Shellandwait(), but I did not find documentation explaining about it....
Alberto Vitoriano's user avatar
0 votes
2 answers
719 views

Autoit won't send Enter to close Excel file

I have an autoit script that opens an excel workbook , modifies it , saves as csv and exits, except I can't get it to exit. It locks on the last save confirmation screen prior to closing, I have added ...
Travis Easton's user avatar
1 vote
0 answers
600 views

Use AutoIt library inside VBA

I need to manipulate some windows using VBA macro, and I`ve seen AutoIt has a lot of functions to help me. Then I would like to import or use the AutoIt API (library) inside my VBA macro. Is it ...
Paulo Ramos's user avatar
0 votes
1 answer
103 views

298 _IsPressed or HotKeySet call in a service not working

I am confuse why any form of keyboard press doesn't work in a service, Can anyone help me spot where I am doing wrong? HotKeySet("^+!d", "Func1") ;crl-Shift-Alt-d ... While $ServiceRunning ;Or --...
Amir Test's user avatar
0 votes
1 answer
201 views

AutoIt CaptureScreen file location

I have the following AutoIt script: Run("Notepad.exe", @WindowsDir, @SW_MAXIMIZE) Sleep(1000) Send("Just a test") $anPos = WinGetClientSize("") $nLeft = 0 $nTop = 0 $nRight = $anPos[0] $nBottom = $...
Or Weinberger's user avatar