I've been trying everything for a week and I cannot find a soltion for this. The problem is that I have been automating process in CATIA with Excel VB and now I want to use Visual Studio 2015. The only problem that I have is the debugger in Visual Studio. When I use:
Dim CATIA As INFITF.Application = GetObject(, "CATIA.Application");
I have a {System.__ComObject}
as a result, clicking on "Dynamic View" (Debugger/Locals) I dont get any propertie of the object. If instead of CATIA.Application, Excel.Application is used I can see in the "Dynamic View" the different properties of the object.
http://stpserver.webcindario.com/vstudiodebugger.png
Also when I type the code:
Set CATIA = GetObject(,"CATIA.Application")
In Excel VBA, in the debugger it will appear all the properties of the object.
http://stpserver.webcindario.com/excevbadebugger.png
My question is how I can see in the Visual Studio 2015 debugger window the properties of the CATIA object as I can see them in Excel VB debugger.
PD: I have imported all the necessary references in Visual Studio 2015