Hello I have a problem to upgrade my vbscript routine from v5 to v6
here the code that works well with v5
Set objRhino = CreateObject(“Rhino5x64.Application”)
If Err.Number <> 0 Then
Call WScript.Echo("Failed to create Rhino object.")
Exit Sub
End If
here the code that fails in V6
Set objRhino = CreateObject(“Rhino.Application.6”)
If Err.Number <> 0 Then
Call WScript.Echo("Failed to create Rhino object.")
Exit Sub
End If
something is wrong in my code ?
thanks in advance
Roberto