Bassiemeer
Member
- Joined
- May 17, 2011
- Messages
- 5
- Programming Experience
- Beginner
Hello,
I have made a userform in AutoCAD, I made some buttons where I want to start software from.
The programm I want to run is started by an VBScript from the manufacturer.
When I double click the VBScript the program starts, but trying to execute if from a button_click on my AutoCAD userform it returns that I am missing MSVCR70.dll files.
The missing file is in the folder of the program I want to run, aswel in my System32 folder.
I tried to execute it the next ways:
and
What is going wrong ?
I have made a userform in AutoCAD, I made some buttons where I want to start software from.
The programm I want to run is started by an VBScript from the manufacturer.
When I double click the VBScript the program starts, but trying to execute if from a button_click on my AutoCAD userform it returns that I am missing MSVCR70.dll files.
The missing file is in the folder of the program I want to run, aswel in my System32 folder.
I tried to execute it the next ways:
VB.NET:
Process.Start("C:\WINDOWS\system32\cscript.exe", """C:\Program Files (x86)\Program\Run.vbs")
VB.NET:
Process.Start("C:\Program Files (x86)\Program\Run.vbs")
What is going wrong ?