Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

Runing VBScript Macro

selahattin
Beginner
900 Views
I wrote a VBScript Macro and installed it. The Macro run from both toolbar button and Macros Dialog Box, successfully.
But I want to run it from Fortran Program,
I put "msdev -ex Macroname" command to fortran Code ( as given Online Document) but I couldn't compile and execute it.
Is there anybody who can help me where I made mistake, please?
Thanks
0 Kudos
4 Replies
james1
Beginner
900 Views
First make sure any command you use works from the command line already. Then you can do something like:

use dflib
result = SYSTEMQQ ("at msdev -ex macroname")

If you still have problems post a code sample and describe any error.

James
0 Kudos
selahattin
Beginner
900 Views
Thanks for your reply.
But I still have problem. Compilation is Ok but in running I got "Bad command or Filename" message.
Here is code and as you see it is only test purposes.
Main Prog:
PROGRAM TEST1
use dflib
IMPLICIT NONE
logical result
result=systemqq(" msdev -ex TestMacro")
END PROGRAM
Macro Code:
Sub TestMacro()
MsgBox "Hello"
End Sub
Thanks at advance
0 Kudos
james1
Beginner
900 Views
Try replacing "msdev" with "dfdev".

James
0 Kudos
selahattin
Beginner
900 Views
Hi James,
I tried with "dfdev" like
result=systemqq("dedev -ex macroname") .
It works but, firstly it opens a new CVF window and then macro runs.
Thanks your cooperative support.
Regards
Selahattin
0 Kudos
Reply