I need to set up live connection between Catia and Matlab so I can send parameters values to my parametric design in Catia and read some other parameters and measures. This is my sollution: First I create: VB NET (*.dll) Public Class CatiaLinkLibrary Dim CATIA As Object Dim rootproduct Sub [...] read more
I have .Net application which communicates with some COM object, and I got the following exception in the COM: System.Runtime.InteropServices.COMException (0x800700A4): No more threads can be created in the system. (Exception from HRESULT: 0x800700A4) Does it means that the COM object created too many threads (as far as I know [...] read more
I have effectively this code (it looks insane with all those try-catches but I really need them to illustrate the problem): Exception doStuffException = null; try { someComObject.DoStuff(); } catch( Exception e ) { doStuffException = e; throw; } finally { try { someComObject.Cleanup(); } catch( Exception e ) { [...] read more
I am seeing a lot of error in the event viewer, Could anyone help me out "Retrieving the COM class factory for component with CLSID {9926D1CF- F158-418F-A9A2-B653B497D982} failed due to the following error: 800700a4 No more threads can be created in the system. (Exception from HRESULT: 0x800700A4)." read more