diff --git a/CatiaNetTest/AssemblyTiers2.vb b/CatiaNetTest/AssemblyTiers2.vb index 12ba79388607cd589ae079c7c529301165ba5771..c9b973ee0a479cad0a94a79ea06162d790cb76bc 100644 --- a/CatiaNetTest/AssemblyTiers2.vb +++ b/CatiaNetTest/AssemblyTiers2.vb @@ -50,7 +50,7 @@ Public Class AssemblyTiers2 Sub CatMain() - + MsgBox("OK, lets start!") ''Test parameters 'iBoundingBoxCode = 1 'bBoundingBoxProjectionCheck = True @@ -62,7 +62,7 @@ Public Class AssemblyTiers2 ''number of analysed disassembly directions ''6 - only global axes, 12 - including local axes 'intJ = 6 - xlsPath = "D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\Experimente\Protocols\" + xlsPath = "D:\03_Dissertation\20_Tools\CATIA_NET\ProgData\" 'xlsFileName = "Centrifugal pump 5mm step" CATIA = GetObject(, "CATIA.Application") @@ -203,7 +203,7 @@ Public Class AssemblyTiers2 Debug.Print("Number of faces in assembly: " & CStr(intNumFaces)) 'Export BB volumes of parts to Excel - ExportBBVolumes() + 'ExportBBVolumes() 'Collision parameters If bAutomaticStep Then @@ -2072,6 +2072,7 @@ Finish: bChooseExtractionDirection = ExtractDirCheckBox.Checked intJ = AxisComboBox.SelectedItem xlsFileName = XLSTextBox.Text + intStep = CDbl(StepTextBox.Text) Debug.Print("Parameters accepted") Me.Hide() Me.CatMain() diff --git a/CatiaNetTest/AssemblyTiers3.vb b/CatiaNetTest/AssemblyTiers3.vb index 65e91da02a2ebea6dbb4fcadda72581e6c6c4f69..b74642a28f56bcc15df799a5877c42e967f21313 100644 --- a/CatiaNetTest/AssemblyTiers3.vb +++ b/CatiaNetTest/AssemblyTiers3.vb @@ -62,7 +62,7 @@ Public Class AssemblyTiers3 ''number of analysed disassembly directions ''6 - only global axes, 12 - including local axes 'intJ = 6 - xlsPath = "D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\Experimente\Protocols\" + xlsPath = "D:\03_Dissertation\20_Tools\CATIA_NET\ProgData" 'xlsFileName = "Centrifugal pump 5mm step" CATIA = GetObject(, "CATIA.Application") diff --git a/CatiaNetTest/Form1.vb b/CatiaNetTest/Form1.vb index 0856c0a39fcf4a099934f785bde3284a541a5572..23cc7fa4b6bf0d4850c10b8834b3288675d25c07 100644 --- a/CatiaNetTest/Form1.vb +++ b/CatiaNetTest/Form1.vb @@ -30,7 +30,7 @@ Public Class Form1 Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click - Dim myAssemblyTiers As AssemblyTiers3 = New AssemblyTiers3() + Dim myAssemblyTiers As AssemblyTiers2 = New AssemblyTiers2() Try myAssemblyTiers.ShowForm() diff --git a/CatiaNetTest/bin/Debug/CatiaNetTest.exe b/CatiaNetTest/bin/Debug/CatiaNetTest.exe index 216c8c5cf4990728a1103afa56464a8bd6f5a1bf..d2d81280ebb16fa2c7d50cca9758469d25641910 100644 Binary files a/CatiaNetTest/bin/Debug/CatiaNetTest.exe and b/CatiaNetTest/bin/Debug/CatiaNetTest.exe differ diff --git a/CatiaNetTest/bin/Debug/CatiaNetTest.pdb b/CatiaNetTest/bin/Debug/CatiaNetTest.pdb index 2fc81a9baeb64153c5772df70e411864f0fbf849..a65f3f03da0a546f7d8d37c4588e18a22d6f8ae0 100644 Binary files a/CatiaNetTest/bin/Debug/CatiaNetTest.pdb and b/CatiaNetTest/bin/Debug/CatiaNetTest.pdb differ diff --git a/CatiaNetTest/bin/Debug/CatiaNetTest.vshost.exe.config b/CatiaNetTest/bin/Debug/CatiaNetTest.vshost.exe.config index 2ae8254d305bb019047d91b8db81c8dca76b56c8..bd27edc04e799305ac0797931ae8216a80eb9c68 100644 --- a/CatiaNetTest/bin/Debug/CatiaNetTest.vshost.exe.config +++ b/CatiaNetTest/bin/Debug/CatiaNetTest.vshost.exe.config @@ -1,6 +1,6 @@ -<?xml version="1.0" encoding="utf-8" ?> +<?xml version="1.0" encoding="utf-8"?> <configuration> <startup> - <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" /> + <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/> </startup> -</configuration> \ No newline at end of file +</configuration> diff --git a/CatiaNetTest/bin/Debug/CatiaNetTest.vshost.exe.manifest b/CatiaNetTest/bin/Debug/CatiaNetTest.vshost.exe.manifest new file mode 100644 index 0000000000000000000000000000000000000000..061c9ca950d0e8bb952c52799fb401a6614ad640 --- /dev/null +++ b/CatiaNetTest/bin/Debug/CatiaNetTest.vshost.exe.manifest @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> + <assemblyIdentity version="1.0.0.0" name="MyApplication.app"/> + <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2"> + <security> + <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3"> + <requestedExecutionLevel level="asInvoker" uiAccess="false"/> + </requestedPrivileges> + </security> + </trustInfo> +</assembly> diff --git a/CatiaNetTest/obj/Debug/CatiaNetTest.exe b/CatiaNetTest/obj/Debug/CatiaNetTest.exe index 216c8c5cf4990728a1103afa56464a8bd6f5a1bf..d2d81280ebb16fa2c7d50cca9758469d25641910 100644 Binary files a/CatiaNetTest/obj/Debug/CatiaNetTest.exe and b/CatiaNetTest/obj/Debug/CatiaNetTest.exe differ diff --git a/CatiaNetTest/obj/Debug/CatiaNetTest.pdb b/CatiaNetTest/obj/Debug/CatiaNetTest.pdb index 2fc81a9baeb64153c5772df70e411864f0fbf849..a65f3f03da0a546f7d8d37c4588e18a22d6f8ae0 100644 Binary files a/CatiaNetTest/obj/Debug/CatiaNetTest.pdb and b/CatiaNetTest/obj/Debug/CatiaNetTest.pdb differ diff --git a/CatiaNetTest/obj/Debug/CatiaNetTest.vbproj.FileListAbsolute.txt b/CatiaNetTest/obj/Debug/CatiaNetTest.vbproj.FileListAbsolute.txt index 671d824cfd7db48afce12ea376332fc56e475594..2c0fbbacdb01ad169657d59ce7186e5c55fd7828 100644 --- a/CatiaNetTest/obj/Debug/CatiaNetTest.vbproj.FileListAbsolute.txt +++ b/CatiaNetTest/obj/Debug/CatiaNetTest.vbproj.FileListAbsolute.txt @@ -185,3 +185,102 @@ D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersN D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\bin\Debug\CatiaNetTest.exe D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\bin\Debug\CatiaNetTest.pdb D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\bin\Debug\CatiaNetTest.xml +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\bin\Debug\CatiaNetTest.exe.config +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.AECRTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.AnnotationTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.BehaviorTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CAT3DXml.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATArrangementTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATAssemblyTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATCompositesMat.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATDataExch.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATEdbTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATFunctSystem.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATHumanPackaging.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATIA_APP_ITF.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATIdeSettings.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATImm.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATInstantCollabItf.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATMat.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATMultiCAD.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATOBM.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATPspPlantShipTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATRdg.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATRma.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATRpmReporterTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATRsc.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATRsc2.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATSchematicTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATSdeSetting.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATSfmTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATSmarTeamInteg.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATSmInterfacesTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATStiWIPBridgeSurrogateCOMExeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATStk.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATStrSettingsTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATTooling.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATV4IInteropTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.ComponentsCatalogsTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBASY.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBBIW.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBD5I.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBDevice.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBDeviceActivity.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBDpmItf.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBFastener.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBIgpResourceProgram.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBIgpTagPath.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBIgripSim.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBIPD.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBManufacturingLayoutItf.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBMHIItf.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBPert.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBReporting.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBRobot.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBSimAct.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBSimIO.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBSimulation.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBState.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DPMSettings.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DRAFTINGITF.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.ElecSchematicTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.ElectricalTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.FittingTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.GenKwe.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.HybridShapeTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.INFITF.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.KinTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.KnowledgewareTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.LAYOUT2DITF.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.MANUFACTURING.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.MECMOD.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.mxcatiav5integrationTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.NavigatorTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.OSMInterfacesTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.PARTITF.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.PCBITF.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.PPR.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.PRISMATICMACHINING.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.PROCESSITF.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.ProductStructureTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.SAMITF.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.SHEITF.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.SIM.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.SimulationTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.SMTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.SPATypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.StrTypeLib.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.SURFACEMACHINING.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.SWKHumanModelingItf.dll +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\CatiaNetTest.vbproj.ResolveComReference.cache +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\CatiaNetTest.exe +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\CatiaNetTest.xml +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\CatiaNetTest.pdb +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\bin\Debug\CatiaNetTest.exe +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\bin\Debug\CatiaNetTest.pdb +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\bin\Debug\CatiaNetTest.xml +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\CatiaNetTest.vbprojResolveAssemblyReference.cache +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\CatiaNetTest.Form1.resources +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\CatiaNetTest.Resources.resources +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\CatiaNetTest.vbproj.GenerateResource.Cache +D:\03_Dissertation\20_Tools\CATIA_NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CD5Integ.dll diff --git a/CatiaNetTest/obj/Debug/CatiaNetTest.vbproj.GenerateResource.Cache b/CatiaNetTest/obj/Debug/CatiaNetTest.vbproj.GenerateResource.Cache index dcb032f0beb9bf25d70e0cd9fc0fa8daeb14e159..d5a83cbdeb6d2c55b492911494cb0b6c2c864da3 100644 Binary files a/CatiaNetTest/obj/Debug/CatiaNetTest.vbproj.GenerateResource.Cache and b/CatiaNetTest/obj/Debug/CatiaNetTest.vbproj.GenerateResource.Cache differ diff --git a/CatiaNetTest/obj/Debug/CatiaNetTest.vbproj.ResolveComReference.cache b/CatiaNetTest/obj/Debug/CatiaNetTest.vbproj.ResolveComReference.cache index 93db3aeff60771bd0b6abbcb75991c7082b23923..86077951c09991e67dae9391fb9ad8d0de00233f 100644 Binary files a/CatiaNetTest/obj/Debug/CatiaNetTest.vbproj.ResolveComReference.cache and b/CatiaNetTest/obj/Debug/CatiaNetTest.vbproj.ResolveComReference.cache differ diff --git a/CatiaNetTest/obj/Debug/CatiaNetTest.vbprojResolveAssemblyReference.cache b/CatiaNetTest/obj/Debug/CatiaNetTest.vbprojResolveAssemblyReference.cache index 09661b8bfb09e523439c4652bab52febd3157b6b..ea9426d8a3649afdc534c78fb309150596d6d71b 100644 Binary files a/CatiaNetTest/obj/Debug/CatiaNetTest.vbprojResolveAssemblyReference.cache and b/CatiaNetTest/obj/Debug/CatiaNetTest.vbprojResolveAssemblyReference.cache differ diff --git a/CatiaNetTest/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/CatiaNetTest/obj/Debug/DesignTimeResolveAssemblyReferences.cache index bc53cc6643fca0a22d48b617443ff303418c309c..d04df0a95a81b0fae66bee2fb4b9437949aebff5 100644 Binary files a/CatiaNetTest/obj/Debug/DesignTimeResolveAssemblyReferences.cache and b/CatiaNetTest/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/CatiaNetTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/CatiaNetTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index d1e443621db36610a970eb96b052126463921243..38c81191100a3f349c98639d1b39257c3c25952f 100644 Binary files a/CatiaNetTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/CatiaNetTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/CatiaNetTest/obj/Debug/Interop.AECRTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.AECRTypeLib.dll index 6781c63d2272852a9f245d17f2af2e147596f993..00b62261f562e123ff64222a542db3903edbea01 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.AECRTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.AECRTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.AnnotationTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.AnnotationTypeLib.dll index e0a26f52d0d3a4abecd8d0e9df84017eda259f7b..484151b3e81afe8e5756fb484e7e31e66cf4a95c 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.AnnotationTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.AnnotationTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.BehaviorTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.BehaviorTypeLib.dll index e9a698702627fa196cd067ea5a22001f9ca94c0b..8742eaf861c3765e93177cb09caa86ea568687bd 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.BehaviorTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.BehaviorTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CAT3DXml.dll b/CatiaNetTest/obj/Debug/Interop.CAT3DXml.dll index e2c6ee02ab4a54a4a3e77e8b56366981332a0d9c..8f969cbfe027d001120993a11fe8e1b51c3526ca 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CAT3DXml.dll and b/CatiaNetTest/obj/Debug/Interop.CAT3DXml.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATArrangementTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.CATArrangementTypeLib.dll index 0eaed2bd8ea6ec695d38f8e12d5180619f0c591c..4f80ec959bfe42f7158fec0bd516e5ac3d19bf01 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATArrangementTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.CATArrangementTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATAssemblyTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.CATAssemblyTypeLib.dll index c9294077fe1bb8f5049e5316bfc0cfc4d925f61f..35629afed4837d878c0ee07bc82972c5524ae507 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATAssemblyTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.CATAssemblyTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATCompositesMat.dll b/CatiaNetTest/obj/Debug/Interop.CATCompositesMat.dll index edd1ba15ffd8da72127cdcc914272818f7e49bf4..df88dd57c4c55a62f7a2c5cd134915ce39c5fe00 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATCompositesMat.dll and b/CatiaNetTest/obj/Debug/Interop.CATCompositesMat.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATDataExch.dll b/CatiaNetTest/obj/Debug/Interop.CATDataExch.dll index df97aa7d55ae659095871d039742244ab3ce79a0..3931f83c548f63527048402c0d2b8def5e4ecd81 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATDataExch.dll and b/CatiaNetTest/obj/Debug/Interop.CATDataExch.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATEdbTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.CATEdbTypeLib.dll index 19a1387d01b79ea32a0e55a6790f29eca2718278..fa32f0f5b1e3f6fccbd69fdfd0cd5d5ed6603c86 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATEdbTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.CATEdbTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATFunctSystem.dll b/CatiaNetTest/obj/Debug/Interop.CATFunctSystem.dll index 9cb6155031385aab047ed436c898ed41ac7e4b8a..5ce90a02770813cbffb9053ab2acf2d85fb79ed1 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATFunctSystem.dll and b/CatiaNetTest/obj/Debug/Interop.CATFunctSystem.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATHumanPackaging.dll b/CatiaNetTest/obj/Debug/Interop.CATHumanPackaging.dll index 0d5a10faa8f48f5490d11c3ab1723bfc8efde0c8..7ca42695c8d441b752c5e8f042252ea29a1163b1 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATHumanPackaging.dll and b/CatiaNetTest/obj/Debug/Interop.CATHumanPackaging.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATIA_APP_ITF.dll b/CatiaNetTest/obj/Debug/Interop.CATIA_APP_ITF.dll index 0df8e6911d058bff840f709bb7aa65b8b699d9a4..6f084fd96156115a071833714284eba2e2e3a1ab 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATIA_APP_ITF.dll and b/CatiaNetTest/obj/Debug/Interop.CATIA_APP_ITF.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATIdeSettings.dll b/CatiaNetTest/obj/Debug/Interop.CATIdeSettings.dll index ae98305f5b3d78116b5c6891f2df1d64a90ccaa0..9f94ef43e913354a9508744e4e64e83f7b992a3c 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATIdeSettings.dll and b/CatiaNetTest/obj/Debug/Interop.CATIdeSettings.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATImm.dll b/CatiaNetTest/obj/Debug/Interop.CATImm.dll index 0270da7eb263525b66265c176d74d73055f7af97..bb391fab7d9956ed263b11d10f1d0a89d8e08fdd 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATImm.dll and b/CatiaNetTest/obj/Debug/Interop.CATImm.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATInstantCollabItf.dll b/CatiaNetTest/obj/Debug/Interop.CATInstantCollabItf.dll index 299645ad6b5c557822b4009402a8030b05c93e51..127b6d79c84d5d5d69eca9d7767cbed9a82e371e 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATInstantCollabItf.dll and b/CatiaNetTest/obj/Debug/Interop.CATInstantCollabItf.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATMat.dll b/CatiaNetTest/obj/Debug/Interop.CATMat.dll index 6e58384f63c441aa9b90c989c74793156c4f6eb2..3fa4124b721f6170eb2cb10d26595d648a3f580c 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATMat.dll and b/CatiaNetTest/obj/Debug/Interop.CATMat.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATMultiCAD.dll b/CatiaNetTest/obj/Debug/Interop.CATMultiCAD.dll index b3891acd82924d3eec605298c0da74ca2064df58..e33917405529cdf373e24614edcc08fa989ee331 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATMultiCAD.dll and b/CatiaNetTest/obj/Debug/Interop.CATMultiCAD.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATOBM.dll b/CatiaNetTest/obj/Debug/Interop.CATOBM.dll index 30a15f0822e926af79254cbef12d3413898ee20f..7c5dd6c1f688b25a769d36e7192460f61df88124 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATOBM.dll and b/CatiaNetTest/obj/Debug/Interop.CATOBM.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATPspPlantShipTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.CATPspPlantShipTypeLib.dll index 2ed47d00335c49a5bc33cc4b9fdd60353ce48543..c40a5b5b94bebefb2342f72dc91d8ed8e79d798f 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATPspPlantShipTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.CATPspPlantShipTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATRdg.dll b/CatiaNetTest/obj/Debug/Interop.CATRdg.dll index ca9eaf6b41af9a5168d86b13ee3e163d13a76bd8..53f54352d47e65ad5a278ecdd79110cdb50d0392 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATRdg.dll and b/CatiaNetTest/obj/Debug/Interop.CATRdg.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATRma.dll b/CatiaNetTest/obj/Debug/Interop.CATRma.dll index 5506e053f7b95b88c12639a46c2c3f7af1ec68db..1e0996b1b598d06902b752895d833f44196ff1ad 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATRma.dll and b/CatiaNetTest/obj/Debug/Interop.CATRma.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATRpmReporterTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.CATRpmReporterTypeLib.dll index 89f7bd10366da23b0931fe8a573a908531d595aa..c3f986c4ab5105722c26b933dbbedfcda964c449 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATRpmReporterTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.CATRpmReporterTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATRsc.dll b/CatiaNetTest/obj/Debug/Interop.CATRsc.dll index 01a7f8ab1db668c26043978b4323c617134c059a..d2808336a13489060934e1aa8ce59e6844ebd031 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATRsc.dll and b/CatiaNetTest/obj/Debug/Interop.CATRsc.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATRsc2.dll b/CatiaNetTest/obj/Debug/Interop.CATRsc2.dll index 6a9d3597788ead77cdde61f5f3f173c17ff871cb..b127fcc8b2415d46d6a7d5d27e35b303eabf9023 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATRsc2.dll and b/CatiaNetTest/obj/Debug/Interop.CATRsc2.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATSchematicTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.CATSchematicTypeLib.dll index bd9f12e2011878a2260a8b018c28f6519c993f3a..a151caf93db327c9e0785091dbffedbb0704e08b 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATSchematicTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.CATSchematicTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATSdeSetting.dll b/CatiaNetTest/obj/Debug/Interop.CATSdeSetting.dll index 8bbfb28afc847451ce44f26c30fb40eb9522a399..ef218b60ef0ff2044a8a57229e7b97d4852d5c80 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATSdeSetting.dll and b/CatiaNetTest/obj/Debug/Interop.CATSdeSetting.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATSfmTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.CATSfmTypeLib.dll index 67f22084e58d08e29cbd98e81df4c6940685e3fc..962e3c67f82bb72aa79be21adafed6464b42cd81 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATSfmTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.CATSfmTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATSmInterfacesTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.CATSmInterfacesTypeLib.dll index f26572526d4c6e59ab4b1ca7e1af4f4ca690e6eb..40a9248561571604fc5612d9d4be8953220f7294 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATSmInterfacesTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.CATSmInterfacesTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATSmarTeamInteg.dll b/CatiaNetTest/obj/Debug/Interop.CATSmarTeamInteg.dll index 86332e92d1b67891d7f7a7721db401cd6f858e55..d0e5a1861a4770333f5ced86d63ff9fda3d3f2a9 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATSmarTeamInteg.dll and b/CatiaNetTest/obj/Debug/Interop.CATSmarTeamInteg.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATStiWIPBridgeSurrogateCOMExeLib.dll b/CatiaNetTest/obj/Debug/Interop.CATStiWIPBridgeSurrogateCOMExeLib.dll index 6136ff9983ca96ebf66fd54d1d0f23135e200976..014b79e213c15bd610847fcd8ccdfa02659f0f7d 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATStiWIPBridgeSurrogateCOMExeLib.dll and b/CatiaNetTest/obj/Debug/Interop.CATStiWIPBridgeSurrogateCOMExeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATStk.dll b/CatiaNetTest/obj/Debug/Interop.CATStk.dll index fd0692b19c43c9853cd39b305b319c3a3b06605c..dce8b440872f378c05c26d6ef510160cab85e6d3 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATStk.dll and b/CatiaNetTest/obj/Debug/Interop.CATStk.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATStrSettingsTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.CATStrSettingsTypeLib.dll index f1070ef19612e0fcb92408879274f8b30b313a54..8277ec3ad86c0960ac0d3d0564485a524f8dd4df 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATStrSettingsTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.CATStrSettingsTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATTooling.dll b/CatiaNetTest/obj/Debug/Interop.CATTooling.dll index 0312043d2ad0a81255c3091c420200f3d871866d..beea40e2bafbdde629ffaa6b9b99e09f7ec4e4de 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATTooling.dll and b/CatiaNetTest/obj/Debug/Interop.CATTooling.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CATV4IInteropTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.CATV4IInteropTypeLib.dll index 1a6eda18e496c30f7667f28ae98dd3518f293769..1487533c4b7230c29c4e914004cc4bf115978776 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CATV4IInteropTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.CATV4IInteropTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.CD5Integ.dll b/CatiaNetTest/obj/Debug/Interop.CD5Integ.dll index c982c2804049a474d2d86f0a51df996d4e273ce1..5c833a4ac98828fd9bfa391e39beb346d5249108 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.CD5Integ.dll and b/CatiaNetTest/obj/Debug/Interop.CD5Integ.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.ComponentsCatalogsTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.ComponentsCatalogsTypeLib.dll index 9e38e851182a19140a532fadabf820d1cdf181fb..546a59dff46c72bb574f57844ffe632222532fa1 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.ComponentsCatalogsTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.ComponentsCatalogsTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.DNBASY.dll b/CatiaNetTest/obj/Debug/Interop.DNBASY.dll index 48756d8021383fd85cd01f7ba4096754b315023a..65a635a9813ec7e233008998ec5bf71ba133ce57 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.DNBASY.dll and b/CatiaNetTest/obj/Debug/Interop.DNBASY.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.DNBBIW.dll b/CatiaNetTest/obj/Debug/Interop.DNBBIW.dll index 7e455b1829e1f91e818c27ece40ddfcdfd49ac70..de52016beaa996c6c166cd6679b9c83e2e1a66ae 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.DNBBIW.dll and b/CatiaNetTest/obj/Debug/Interop.DNBBIW.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.DNBD5I.dll b/CatiaNetTest/obj/Debug/Interop.DNBD5I.dll index ba8aab69afb0a7f7475ba3c9d1bb20de8b83e5ad..cb8a6c07519326d2872d5b9a4c04325e5d57ab0e 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.DNBD5I.dll and b/CatiaNetTest/obj/Debug/Interop.DNBD5I.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.DNBDevice.dll b/CatiaNetTest/obj/Debug/Interop.DNBDevice.dll index 3a7f35f78ee289e819a395b3c7d898bf40b20562..a867a41f07d499ba172b09d94179b5927c2d032e 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.DNBDevice.dll and b/CatiaNetTest/obj/Debug/Interop.DNBDevice.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.DNBDeviceActivity.dll b/CatiaNetTest/obj/Debug/Interop.DNBDeviceActivity.dll index 997dad80c883decb48e1039c24b7e5ea6455b5be..ba2d40b0d8cb3353a4d2f9ef1505cf1b0139ed8b 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.DNBDeviceActivity.dll and b/CatiaNetTest/obj/Debug/Interop.DNBDeviceActivity.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.DNBDpmItf.dll b/CatiaNetTest/obj/Debug/Interop.DNBDpmItf.dll index bfe8a192dcc542107651684a640ccccebe141fe1..a800ed267a4a9a08f02d124963ba8d38d4f87ca4 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.DNBDpmItf.dll and b/CatiaNetTest/obj/Debug/Interop.DNBDpmItf.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.DNBFastener.dll b/CatiaNetTest/obj/Debug/Interop.DNBFastener.dll index c636b70da513416a9ef6d61e7a912dfd731ebdd9..c53c901cd56c7934c49c83e59b4a59f9d087a0c5 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.DNBFastener.dll and b/CatiaNetTest/obj/Debug/Interop.DNBFastener.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.DNBIPD.dll b/CatiaNetTest/obj/Debug/Interop.DNBIPD.dll index 41e22357e45b33aeef64aba13d17bb52e2a7c0ac..6a70dd9d8cb13937e3d0ed92990050bfe2130e52 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.DNBIPD.dll and b/CatiaNetTest/obj/Debug/Interop.DNBIPD.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.DNBIgpResourceProgram.dll b/CatiaNetTest/obj/Debug/Interop.DNBIgpResourceProgram.dll index ddbe2c837d09b3d3f6758a2cce94df57219ea1b4..6c6e56f45729fe411c4578dcc67f24a407395f55 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.DNBIgpResourceProgram.dll and b/CatiaNetTest/obj/Debug/Interop.DNBIgpResourceProgram.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.DNBIgpTagPath.dll b/CatiaNetTest/obj/Debug/Interop.DNBIgpTagPath.dll index d6b5c8330b8b97af62d6852966b1f7babd8cf9d5..6570fe41d31d7e34da987053385bdcd27f8d9989 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.DNBIgpTagPath.dll and b/CatiaNetTest/obj/Debug/Interop.DNBIgpTagPath.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.DNBIgripSim.dll b/CatiaNetTest/obj/Debug/Interop.DNBIgripSim.dll index 888a482a437aca85656bfb5ce1b4b0586c73e779..f3de384a61cabbdf958fc34adcec4fbb91c46078 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.DNBIgripSim.dll and b/CatiaNetTest/obj/Debug/Interop.DNBIgripSim.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.DNBMHIItf.dll b/CatiaNetTest/obj/Debug/Interop.DNBMHIItf.dll index 9b8587d9e6ed313f417fcbd815e58275eacdff1f..256b2ada2798d3fff853e19231db0faeff374153 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.DNBMHIItf.dll and b/CatiaNetTest/obj/Debug/Interop.DNBMHIItf.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.DNBManufacturingLayoutItf.dll b/CatiaNetTest/obj/Debug/Interop.DNBManufacturingLayoutItf.dll index be0fc5df8a5c238456ae83f34b1829ae410776ff..c913154c1b571e547c7a5c9b618a47f80fa83fb0 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.DNBManufacturingLayoutItf.dll and b/CatiaNetTest/obj/Debug/Interop.DNBManufacturingLayoutItf.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.DNBPert.dll b/CatiaNetTest/obj/Debug/Interop.DNBPert.dll index 4248c8872dc4690e6e934f0776aea1d0074e523f..394f426b5f926e16a7641ba295248cd9dd1630c6 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.DNBPert.dll and b/CatiaNetTest/obj/Debug/Interop.DNBPert.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.DNBReporting.dll b/CatiaNetTest/obj/Debug/Interop.DNBReporting.dll index 4c89ba69decfd3c2aa7d130cb85b22aac29ef864..d4bcb4dbca4424bc3e173d8e8a50340318f634be 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.DNBReporting.dll and b/CatiaNetTest/obj/Debug/Interop.DNBReporting.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.DNBRobot.dll b/CatiaNetTest/obj/Debug/Interop.DNBRobot.dll index 146f42d23f94cb9c001b33c030c788851a6fa8bc..618233cb80fc061768df69872379d3ef82ea913a 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.DNBRobot.dll and b/CatiaNetTest/obj/Debug/Interop.DNBRobot.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.DNBSimAct.dll b/CatiaNetTest/obj/Debug/Interop.DNBSimAct.dll index 6c5afc248bf0b9c4ccafcca60854b440321f94d2..294cc271ff0b24c788f0fb6279914c486a342dc7 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.DNBSimAct.dll and b/CatiaNetTest/obj/Debug/Interop.DNBSimAct.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.DNBSimIO.dll b/CatiaNetTest/obj/Debug/Interop.DNBSimIO.dll index ecfedc928bb1fa538f3bc8ec798c0298fec4b30d..9fa8361a3800035b7bb6f40b3dd3e3035c16af12 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.DNBSimIO.dll and b/CatiaNetTest/obj/Debug/Interop.DNBSimIO.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.DNBSimulation.dll b/CatiaNetTest/obj/Debug/Interop.DNBSimulation.dll index f09eeae09690cbbe225490f0650cf9a1b65a9aad..ac05d8ddc77d99df079c252b0223e7690a27d9d1 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.DNBSimulation.dll and b/CatiaNetTest/obj/Debug/Interop.DNBSimulation.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.DNBState.dll b/CatiaNetTest/obj/Debug/Interop.DNBState.dll index d30e36711e4e6d99eb46b0d70ee53af2c8a2157d..1f340aeb1fabdccc61d8f011193f8b0446d66702 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.DNBState.dll and b/CatiaNetTest/obj/Debug/Interop.DNBState.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.DPMSettings.dll b/CatiaNetTest/obj/Debug/Interop.DPMSettings.dll index b746d3608283f178bd0d3ec3711ebc0abdc85f99..902996167b7724a8bc8789837cb74362ee0dc68a 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.DPMSettings.dll and b/CatiaNetTest/obj/Debug/Interop.DPMSettings.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.DRAFTINGITF.dll b/CatiaNetTest/obj/Debug/Interop.DRAFTINGITF.dll index b05b6447c22852320d5ef1bcbf7f8930a88bfd7d..47dcdaeda2c17d82ce0012044708c2b9fd09d52f 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.DRAFTINGITF.dll and b/CatiaNetTest/obj/Debug/Interop.DRAFTINGITF.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.ElecSchematicTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.ElecSchematicTypeLib.dll index 76a57cc7399e9292eab78bf841f03bb2fceb4743..50049c3a424445a0eb94c10fe689636df02922f5 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.ElecSchematicTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.ElecSchematicTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.ElectricalTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.ElectricalTypeLib.dll index 4919be1654b675a287a70809270d3b4489c3b910..e09c15b5777ba6ad93970eb8c5a03bf39b036fbd 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.ElectricalTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.ElectricalTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.FittingTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.FittingTypeLib.dll index c7c7f1bcd0bc5aed25b7bedb1488c97862d2812f..3df3d785daa2d6d8d832bd277e486150472e2a39 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.FittingTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.FittingTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.GenKwe.dll b/CatiaNetTest/obj/Debug/Interop.GenKwe.dll index e5bd7026034f961c6dffb820c6482bc9c80aee49..c68669b1a11185e18176f0162385e05bae4cf9c7 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.GenKwe.dll and b/CatiaNetTest/obj/Debug/Interop.GenKwe.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.HybridShapeTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.HybridShapeTypeLib.dll index a91c3dcce2df56ac4c4aa64451ff7a971cd5821e..53f32bfbb48495a20a6a06fd380a6f657146f6e9 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.HybridShapeTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.HybridShapeTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.INFITF.dll b/CatiaNetTest/obj/Debug/Interop.INFITF.dll index a992accac5246ced6fe209a86b573cc97b2e77a7..2a85fa6e0aeb0b5ee9213b37b55ed2cc0f5919a0 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.INFITF.dll and b/CatiaNetTest/obj/Debug/Interop.INFITF.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.KinTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.KinTypeLib.dll index 266ff54264c03dfaf37a8c515031139a1f041f3f..1a97edd12c4070155a1ee754c3607d36d030934c 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.KinTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.KinTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.KnowledgewareTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.KnowledgewareTypeLib.dll index 72e0cd381b86b506f835e5481bdf16cb7442e5a7..dc59733dd0c91b1d25793d318ee7c091addfc33e 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.KnowledgewareTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.KnowledgewareTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.LAYOUT2DITF.dll b/CatiaNetTest/obj/Debug/Interop.LAYOUT2DITF.dll index d2220a4177dcf58b09a6b54ac17fb1d9161638ba..532880909a038e5d95de5e2cb12a4de184828bfc 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.LAYOUT2DITF.dll and b/CatiaNetTest/obj/Debug/Interop.LAYOUT2DITF.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.MANUFACTURING.dll b/CatiaNetTest/obj/Debug/Interop.MANUFACTURING.dll index 98f19efe43e06417026f0ef05a32faebfe9d67da..fa4467e26362dfa5217e40bb600ff27c88c5a138 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.MANUFACTURING.dll and b/CatiaNetTest/obj/Debug/Interop.MANUFACTURING.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.MECMOD.dll b/CatiaNetTest/obj/Debug/Interop.MECMOD.dll index 6ac973178dd6eefc9da7da6fb7e8a4575371380f..e00dd631af3b906a413df7ed1395b1cfc7163122 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.MECMOD.dll and b/CatiaNetTest/obj/Debug/Interop.MECMOD.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.NavigatorTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.NavigatorTypeLib.dll index 1f7cfe457ef6ad4d57300dcf171b22d5c919da57..c3f8b89c8b563be53fda5b081542ac31255316c3 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.NavigatorTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.NavigatorTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.OSMInterfacesTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.OSMInterfacesTypeLib.dll index 77c70bef60f3178636f1074384657408f6001af0..7870326d83291925e97421c037e17f1623770b24 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.OSMInterfacesTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.OSMInterfacesTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.Office.dll b/CatiaNetTest/obj/Debug/Interop.Office.dll index 77d888d3dcfc4212d8d7eca43c545d5427065b17..1c6eaa39fdb2b04d9ec934f9724cd23c28ad3187 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.Office.dll and b/CatiaNetTest/obj/Debug/Interop.Office.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.PARTITF.dll b/CatiaNetTest/obj/Debug/Interop.PARTITF.dll index b4ad80c650d0e066415eee8c1e632bbcabc52a2a..854d26cb1b3239b6a9ee041bd5e0e23016a41d6b 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.PARTITF.dll and b/CatiaNetTest/obj/Debug/Interop.PARTITF.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.PCBITF.dll b/CatiaNetTest/obj/Debug/Interop.PCBITF.dll index 4ab51ba81b8c2cd243920d2ab1ac6c731fc89f38..731228bfa5cc9d366e5d239e77ffb39c7278539d 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.PCBITF.dll and b/CatiaNetTest/obj/Debug/Interop.PCBITF.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.PPR.dll b/CatiaNetTest/obj/Debug/Interop.PPR.dll index e9029d6b1cc76ebd01a0ebe3257d244d37616df7..9a5a89c5cffeb2f02f8fbaaef9290906bbac161f 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.PPR.dll and b/CatiaNetTest/obj/Debug/Interop.PPR.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.PRISMATICMACHINING.dll b/CatiaNetTest/obj/Debug/Interop.PRISMATICMACHINING.dll index ddb6b8e0a56b7b58de0c4aa2206ade3099202eff..92f10abc4aee0e22b86696133542c7b24a80b040 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.PRISMATICMACHINING.dll and b/CatiaNetTest/obj/Debug/Interop.PRISMATICMACHINING.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.PROCESSITF.dll b/CatiaNetTest/obj/Debug/Interop.PROCESSITF.dll index 7bfcce25b052bdd8904273d0a2a1ed26a312125a..a61e40f2ff5546f4c4d7414fd3c96f64262543b6 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.PROCESSITF.dll and b/CatiaNetTest/obj/Debug/Interop.PROCESSITF.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.ProductStructureTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.ProductStructureTypeLib.dll index fb4d397e1fdeaca45764e10d6fb69af7904bd40a..889242e1969ee2a5b2319e6410842b1b85e0779b 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.ProductStructureTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.ProductStructureTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.SAMITF.dll b/CatiaNetTest/obj/Debug/Interop.SAMITF.dll index 2d43be471e9079ed8e7fb966bc454da18d315b10..4375a2d71c968490a87946b3be451f50d5793ea1 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.SAMITF.dll and b/CatiaNetTest/obj/Debug/Interop.SAMITF.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.SHEITF.dll b/CatiaNetTest/obj/Debug/Interop.SHEITF.dll index 6946d7353881bfa25916f84a16d91077bc089f47..b065a7e03b4e3ca0b6d398571a768a5a62dd19ca 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.SHEITF.dll and b/CatiaNetTest/obj/Debug/Interop.SHEITF.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.SIM.dll b/CatiaNetTest/obj/Debug/Interop.SIM.dll index fb740cb6bae16bbdcf52d8d352ffbfe0b7858bb0..f9f666e6b135401c61163c195b05487008b3a408 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.SIM.dll and b/CatiaNetTest/obj/Debug/Interop.SIM.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.SMTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.SMTypeLib.dll index 0dce8e79698a2d180da73d38bf6a38a7ebe66244..0dede973113d0bc1037a3c6afe93c22ee1074627 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.SMTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.SMTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.SPATypeLib.dll b/CatiaNetTest/obj/Debug/Interop.SPATypeLib.dll index 9ecfd6ba64a99366f0050b5194c3166992de4337..bb6a59746e427caa44bc6b5285830f0d464c7e48 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.SPATypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.SPATypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.SURFACEMACHINING.dll b/CatiaNetTest/obj/Debug/Interop.SURFACEMACHINING.dll index 1d5d82acc0e0e4cb5881080c6792bf309ff14162..31e1e322e183d257dba4a61e0052217acd808bab 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.SURFACEMACHINING.dll and b/CatiaNetTest/obj/Debug/Interop.SURFACEMACHINING.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.SWKHumanModelingItf.dll b/CatiaNetTest/obj/Debug/Interop.SWKHumanModelingItf.dll index 5f713983ef794673a6c44ea642e850dc6e8deaa0..59a9c6d7f43e1fc764f0ea0320b99080f3c494b5 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.SWKHumanModelingItf.dll and b/CatiaNetTest/obj/Debug/Interop.SWKHumanModelingItf.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.SimulationTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.SimulationTypeLib.dll index 04a77680f709d89bf25bc8318f77487718b91fc5..cd5d45b7d79191a6674bf3a1f769941da0753ac3 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.SimulationTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.SimulationTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.StrTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.StrTypeLib.dll index 2e56a2e334f97b5fa49509613ac57e8d4ef1bbb8..30acb8c82805ac332de029368bb9fb9d7b739025 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.StrTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.StrTypeLib.dll differ diff --git a/CatiaNetTest/obj/Debug/Interop.mxcatiav5integrationTypeLib.dll b/CatiaNetTest/obj/Debug/Interop.mxcatiav5integrationTypeLib.dll index 8e155192c5477d923b50ba7985e6e61f4bb1a344..c7b116b6766c7a69b4cdd903b009ccc0ee2e5623 100644 Binary files a/CatiaNetTest/obj/Debug/Interop.mxcatiav5integrationTypeLib.dll and b/CatiaNetTest/obj/Debug/Interop.mxcatiav5integrationTypeLib.dll differ