vba EXCEL

Support for iMacros. The iMacros software is the unique solution for automating every activity inside a web browser, for data extraction and web testing.
Forum rules
iMacros EOL - Attention!

The renewal maintenance has officially ended for Progress iMacros effective November 20, 2023 and all versions of iMacros are now considered EOL (End-of-Life). The iMacros products will no longer be supported by Progress (aside from customer license issues), and these forums will also no longer be moderated from the Progress side.

Thank you again for your business and support.

Sincerely,
The Progress Team

Before asking a question or reporting an issue:
1. Please review the list of FAQ's.
2. Use the search box (at the top of each forum page) to see if a similar problem or question has already been addressed.
3. Try searching the iMacros Wiki - it contains the complete iMacros reference as well as plenty of samples and tutorials.
4. We can respond much faster to your posts if you include the following information: CLICK HERE FOR IMPORTANT INFORMATION TO INCLUDE IN YOUR POST
Post Reply
Lipaika
Posts: 3
Joined: Fri Jan 04, 2008 5:19 pm

vba EXCEL

Post by Lipaika » Fri Jan 04, 2008 6:07 pm

Hello,

I have executed the example given for excel, and it opens iMacros Broswer to show the step by step macro. I would like to know how to launch the macrowithout opening the iMacro interface?
Thanks
User avatar
Tech Support
Posts: 4948
Joined: Tue Sep 20, 2005 7:25 pm
Contact:

Post by Tech Support » Tue Jan 08, 2008 4:26 pm

Please use iimInit ("-tray").
my2testing
Posts: 21
Joined: Tue Oct 30, 2007 6:57 am
Contact:

Post by my2testing » Wed Jan 09, 2008 12:45 am

Ⅰ.
Example-Batchfile.bat

Code: Select all

echo Example iMacros Batch File
REM Tip: You may have to adjust the path names to YOUR installation directory of iMacros

"C:\Program Files\iMacros\imacros.exe" -macro Demo-FillForm -tray

echo Batch file completed
pause
Ⅱ.
Visual Basic Script example:

Code: Select all

Dim imacros, iret 
Set imacros = CreateObject("imacros") 
iret = imacros.iimInit("-tray") 
iret = imacros.iimPlay("mymacro")
Post Reply