![]() |
#2
|
|||
|
|||
Hi,
It is possible to run a vizard script from within another program. All you have to do is execute the following command: "C:\Program Files\Vizard20\bin\winviz.exe" <path to your script> 0 Use the following piece of code in your program to call this command: Code:
ShellExecute(NULL, "open", "C:\\Program Files\\Vizard20\\bin\\winviz", "C:\\somescript.py 0", NULL, SW_SHOW); |
|
|