I have an application that used Macro.
In this macro I would like to call an external executable like this:
SYSTEM( "C:\Programme\Transform.exe" ,
"C:\Programme\Vectors.txt" ,
"C:\Programme\Vectors_Compensate.txt",
"C:\Programme\Vectors_Final.txt" )
This executable reconstruct a modified file according to a template file. Finally, a new file is create.
Transform.exe open a form that ask the Path for - Template File - Modified file - where you want to put the new reconstruct file.
After this you press start.
I would like that when you call that command line
SYSTEM( "C:\Programme\Transform.exe" ,
"C:\Programme\Vectors.txt" ,
"C:\Programme\Vectors_Compensate.txt",
"C:\Programme\Vectors_Final.txt" )
The parameter will go in the place in the form.
How can I do that ???
Thanks.