On Windows 10, I can’t connect to Rhino3 for External Access.
Task manager shows a process for Rhino3.exe -Embedding
Do I have to regsvr32 some dll?
This results in the error “ActiveX component can’t create object”.
' Try creating a Rhino Application object
Dim objRhino
' On Error Resume Next
Set objRhino = CreateObject("Rhino3.Application")
If Err.Number <> 0 Then
Call WScript.Echo("Failed to create Rhino object.")
' Exit Sub
else
Call WScript.Echo("Rhino object created.")
End If
1.) Installed Rhino 3 SR5b on Windows 10 Pro.
2.) Ran Rhino 3 once “as administrator”
3.) Saved the following code to test.vbs:
On Error Resume Next
Set objRhino = CreateObject("Rhino3.Application")
If Err.Number <> 0 Then
Call WScript.Echo("Failed to create Rhino object.")
Else
Call WScript.Echo("Rhino object created.")
End If