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
vba EXCEL
Forum rules
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
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
- Tech Support
- Posts: 4947
- Joined: Tue Sep 20, 2005 7:25 pm
- Contact:
Please use iimInit ("-tray").
-
- Posts: 21
- Joined: Tue Oct 30, 2007 6:57 am
- Contact:
Ⅰ.
Example-Batchfile.bat
Ⅱ.
Visual Basic Script example:
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")