Hi McNeel team,
I’m having some trouble with scripting and I was hoping to get some support on this.
For the record, I am not a coder or a programmer: the extent of my formal coding training was some classes in high-school.
I’ve got a macro in Solidworks that runs a VBA script. The aim of the macro is to do the following:
- Check if Rhino is running and start it if not
- Save the model that is currently open in SW out to a temporary .STEP file
- Import the .STEP file in Rhino and do some adjustments (rotate it, increase the mesh quality and turn on a custom display mode)
- Cleanup
When I run the macro, everything goes as planned… until I close Rhino, and then re-run the macro: I expect the macro to re-do everything and open Rhino like it initially did, but it didn’t. So I checked the Task Manager and it looked like Rhino was still open. That confused me, but I then realized that if I closed Solidworks with Rhino open, Rhino would ask to close (showing the prompt of asking whether I would like to save the current file).
So I concluded that the object set up in the macro is keeping the Rhino.exe process alive until I either kill that object or close Solidworks.
So I then set-up a Cleanup method in the script (thanks to some guidance from Deepseek), where after importing the STEP file, it sets both the Rhino and objRhinoScript objects to Nothing (effectively killing the connection between Solidworks and Rhino until I run the macro again).
This works in the way of the Rhino.exe process ending as soon as I decide to close Rhino, but the issue with this is that it means that whenever I run the macro, after doing everything I want it to, importing the STEP file, changing the mesh, changing the display mode, etc, Rhino then tries to _Exit and it asks if I want to save the file.
I did more research and then found this (ReleaseWithoutClosing) page, which I thought would be the answer to my life’s problems. And as you can see from the attached script, I’ve dotted it everywhere I thought it might make a difference. I tried ReleaseWithoutClosing = 0, True, False, etc. But nothing has worked so far.
If anyone has an idea as to how I could get this to work seamlessly, I would much appreciate it.
The script is attached here:
exportOpenRhinoZebra.txt (3.0 KB)
The custom display mode:
Light lines.ini (14.9 KB)
the alias for SetHighResMesh
_NoEcho '-DocumentProperties Mesh Custom JaggedSeams=No PackTextures=No Refine=Yes SimplePlane=Yes AdvancedOptions Angle=0 AspectRatio=6 Distance=0.001 Density=0 Grid=64 MaxEdgeLength=0 MinEdgeLength=0 SubdivisionLevel=1 SubdivisonContext=Absolute EnterEnd
Here’s a brief (40s) video showing what happens: