├── .gitignore ├── CSharp_COM ├── CATIA_Automation │ ├── CATIA_Automation.sln │ └── CATIA_Automation │ │ ├── App.config │ │ ├── CATIA_Automation.csproj │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings └── CATIA_Automation_With_IDL │ └── TestIDLApplication │ ├── TestIDLApplication.sln │ └── TestIDLApplication │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ └── TestIDLApplication.csproj ├── Code ├── TJMBeginApplicationWsp │ └── TJMBeginApplicationFrm │ │ ├── CNext │ │ ├── code │ │ │ └── dictionary │ │ │ │ └── TJMBeginApplicationFrm.dico │ │ └── resources │ │ │ └── msgcatalog │ │ │ ├── TJMDlgInterWindow.CATNls │ │ │ ├── TestDlg.CATNls │ │ │ └── TestDlg.CATRsc │ │ ├── IdentityCard │ │ └── IdentityCard.h │ │ ├── PublicInterfaces │ │ ├── TJMBeginApplicationM.h │ │ └── TestM.h │ │ ├── TJMBeginApplicationM.m │ │ ├── Imakefile.mk │ │ ├── LocalInterfaces │ │ │ ├── TJMCreateViewWindowDlg.h │ │ │ ├── TJMDlgInterApplication.h │ │ │ ├── TJMDlgInterWindow.h │ │ │ └── TJMVisManagerCmdSelector.h │ │ └── src │ │ │ ├── TJMCreateViewWindowDlg.cpp │ │ │ ├── TJMDlgInterApplication.cpp │ │ │ ├── TJMDlgInterWindow.cpp │ │ │ └── TJMVisManagerCmdSelector.cpp │ │ └── TestM.m │ │ ├── Imakefile.mk │ │ ├── LocalInterfaces │ │ ├── TestBatchCreatePointMod.h │ │ ├── TestDlg.CATDlg │ │ └── TestDlg.h │ │ └── src │ │ ├── TestBatchCreatePointCmd.cpp │ │ └── TestDlg.cpp ├── TJMWheelHouseDraftWsp │ ├── TJMWheelHouseDraftAddinFrm │ │ ├── CNext │ │ │ └── code │ │ │ │ └── dictionary │ │ │ │ └── TJMWheelHouseDraftAddinFrm.dico │ │ ├── IdentityCard │ │ │ └── IdentityCard.h │ │ ├── PublicInterfaces │ │ │ └── TJMWheelHouseDraftAddinM.h │ │ └── TJMWheelHouseDraftAddinM.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ └── TJMWheelHouseDraftAddin.h │ │ │ └── src │ │ │ └── TJMWheelHouseDraftAddin.cpp │ ├── TJMWheelHouseDraftGeneralFrm │ │ ├── CNext │ │ │ └── code │ │ │ │ └── dictionary │ │ │ │ └── CQYFASOscarGeneralFrm.dico │ │ ├── IdentityCard │ │ │ └── IdentityCard.h │ │ ├── PublicInterfaces │ │ │ ├── TJMWheelHouseDraftGeneralClass.h │ │ │ └── TJMWheelHouseDraftGeneralM.h │ │ └── TJMWheelHouseDraftGeneralM.m │ │ │ ├── Imakefile.mk │ │ │ └── src │ │ │ └── TJMWheelHouseDraftGeneralClass.cpp │ └── TJMWheelHouseDraftUIFrm │ │ ├── CNext │ │ ├── code │ │ │ └── dictionary │ │ │ │ └── TJMWheelHouseDraftUIFrm.dico │ │ └── resources │ │ │ └── msgcatalog │ │ │ ├── TJMWheelHouseDraftCmd.CATNls │ │ │ ├── TJMWheelHouseDraftDlg.CATNls │ │ │ └── TJMWheelHouseDraftDlg.CATRsc │ │ ├── IdentityCard │ │ └── IdentityCard.h │ │ ├── PublicInterfaces │ │ └── TJMWheelHouseDraftUIM.h │ │ └── TJMWheelHouseDraftUIM.m │ │ ├── Imakefile.mk │ │ ├── LocalInterfaces │ │ ├── TJMWheelHouseDraftCls.h │ │ ├── TJMWheelHouseDraftCmd.h │ │ ├── TJMWheelHouseDraftDlg.CATDlg │ │ └── TJMWheelHouseDraftDlg.h │ │ └── src │ │ ├── TJMWheelHouseDraftCls.cpp │ │ ├── TJMWheelHouseDraftCmd.cpp │ │ └── TJMWheelHouseDraftDlg.cpp ├── TestDataBaseWsp │ └── TestAdoFrm │ │ ├── IdentityCard │ │ ├── IdentityCard.xml │ │ └── README.md │ │ ├── ProtectedInterfaces │ │ └── TestExeM.h │ │ ├── PublicInterfaces │ │ ├── AdoConn.h │ │ └── TestAdoM.h │ │ ├── TestAdoM.m │ │ ├── Imakefile.mk │ │ └── src │ │ │ └── AdoConn.cpp │ │ └── TestExeM.m │ │ ├── Imakefile.mk │ │ └── src │ │ └── TestExecSql.cpp ├── TestIDLWsp │ ├── TestIDLFrmImpl │ │ ├── CNext │ │ │ └── code │ │ │ │ └── dictionary │ │ │ │ └── TestIDLFrmImpl.dico │ │ ├── IdentityCard │ │ │ ├── IdentityCard.h │ │ │ ├── README.md │ │ │ └── __IdentityCard.xml │ │ ├── PublicInterfaces │ │ │ └── TestIDLModImpl.h │ │ └── TestIDLModImpl.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ ├── TestComp.h │ │ │ ├── TestCompExt.h │ │ │ └── TestCompFunc.h │ │ │ └── src │ │ │ ├── TestComp.cpp │ │ │ ├── TestCompExt.cpp │ │ │ └── TestCompFunc.cpp │ └── TestIDLFrmInterfaces │ │ ├── CNext │ │ └── code │ │ │ └── dictionary │ │ │ ├── TestIDLFrmInterfaces.dico │ │ │ └── TestIDLFrmInterfaces.iid │ │ ├── IdentityCard │ │ ├── IdentityCard.h │ │ ├── README.md │ │ └── __IdentityCard.xml │ │ ├── ProtectedInterfaces │ │ └── TestIDLFrmItfCPP.h │ │ ├── PublicInterfaces │ │ └── CAAIATestInterface.idl │ │ ├── TestIDLFrmItf.m │ │ └── Imakefile.mk │ │ ├── TestIDLFrmItfCPP.m │ │ └── Imakefile.mk │ │ ├── TestIDLFrmProIDL.m │ │ └── Imakefile.mk │ │ ├── TestIDLFrmPubIDL.m │ │ └── Imakefile.mk │ │ └── TestIDLFrmTypeLib.m │ │ ├── Imakefile.mk │ │ └── src │ │ └── TestIDLFrmTypeLib.tplib ├── WSFeatureExtensionTJM │ ├── CATfct_Transfer_OSM_CMD_Line.txt │ ├── Test.osm │ ├── TestAddinFrm │ │ ├── CNext │ │ │ └── code │ │ │ │ └── dictionary │ │ │ │ └── TestAddinFrm.dico │ │ ├── IdentityCard │ │ │ └── IdentityCard.h │ │ ├── PublicInterfaces │ │ │ └── TestAddinMod.h │ │ └── TestAddinMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ └── TestAddin.h │ │ │ └── src │ │ │ └── TestAddin.cpp │ ├── TestBatchCreateCatalog.bat │ ├── TestExtendPtInterfaces │ │ ├── CNext │ │ │ └── code │ │ │ │ └── dictionary │ │ │ │ ├── TestExtendPtInterfaces.dico │ │ │ │ └── TestExtendPtInterfaces.iid │ │ ├── IdentityCard │ │ │ └── IdentityCard.h │ │ ├── PublicInterfaces │ │ │ ├── TestExtendPtItfCPP.h │ │ │ ├── TstIFactory.h │ │ │ └── TstIPoint.h │ │ ├── TestExtendPtInterfacesUUID.m │ │ │ ├── Imakefile.mk │ │ │ └── src │ │ │ │ ├── TstIFactory.cpp │ │ │ │ └── TstIPoint.cpp │ │ ├── TestExtendPtItf.m │ │ │ └── Imakefile.mk │ │ └── TestExtendPtItfCPP.m │ │ │ ├── Imakefile.mk │ │ │ └── src │ │ │ ├── TIE_TstIFactory.tsrc │ │ │ ├── TIE_TstIPoint.tsrc │ │ │ ├── TstIFactory.cpp │ │ │ └── TstIPoint.cpp │ ├── TestExtendUIFrm │ │ ├── CNext │ │ │ ├── code │ │ │ │ └── dictionary │ │ │ │ │ └── TestExtendUIFrm.dico │ │ │ └── resources │ │ │ │ └── msgcatalog │ │ │ │ ├── TestExtendPtCmd.CATNls │ │ │ │ ├── TestExtendPtDlg.CATNls │ │ │ │ └── TestExtendPtDlg.CATRsc │ │ ├── IdentityCard │ │ │ └── IdentityCard.h │ │ ├── PublicInterfaces │ │ │ ├── TestExtendPtCmd.h │ │ │ ├── TestExtendPtDlg.h │ │ │ └── TestExtendUIMod.h │ │ └── TestExtendUIMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ ├── TestExtendPtDlg.CATDlg │ │ │ └── TstEPointEdit.h │ │ │ └── src │ │ │ ├── TestExtendPtCmd.cpp │ │ │ ├── TestExtendPtDlg.cpp │ │ │ └── TstEPointEdit.cpp │ └── TestFeatExtCatalogFrm │ │ ├── CNext │ │ ├── code │ │ │ └── dictionary │ │ │ │ └── TestFeatExtCatalogFrm.dico │ │ └── resources │ │ │ └── graphic │ │ │ ├── TestCatalog.CATfct │ │ │ └── icons │ │ │ └── normal │ │ │ └── TestExtendPt.bmp │ │ ├── IdentityCard │ │ └── IdentityCard.h │ │ ├── PublicInterfaces │ │ ├── TestExtentPtImplMod.h │ │ └── TestFeatExtCatalogMod.h │ │ ├── TestExtentPtImplMod.m │ │ ├── Imakefile.mk │ │ ├── LocalInterfaces │ │ │ ├── TstEBuild.h │ │ │ ├── TstEFactory.h │ │ │ ├── TstEPoint.h │ │ │ └── TstEPointIcon.h │ │ └── src │ │ │ ├── TstEBuild.cpp │ │ │ ├── TstEFactory.cpp │ │ │ ├── TstEPoint.cpp │ │ │ └── TstEPointIcon.cpp │ │ └── TestFeatExtCatalogMod.m │ │ ├── Imakefile.mk │ │ └── src │ │ └── TestFeatExtCreateCatalog.cpp ├── WSTrainingBatchTJM │ ├── TrainingBatchFrm │ │ ├── CNext │ │ │ └── code │ │ │ │ └── dictionary │ │ │ │ └── TrainingBatchFrm.dico │ │ ├── IdentityCard │ │ │ └── IdentityCard.h │ │ ├── PublicInterfaces │ │ │ ├── TestBatchCreatePointMod.h │ │ │ └── TestBatchMod.h │ │ ├── TestBatchCreatePointMod.m │ │ │ ├── Imakefile.mk │ │ │ └── src │ │ │ │ └── TestBatchCreatePointCmd.cpp │ │ └── TestBatchMod.m │ │ │ ├── Imakefile.mk │ │ │ └── src │ │ │ └── TestBatch.cpp │ └── TrainingBatchGeneralClassFrm │ │ ├── CNext │ │ └── code │ │ │ └── dictionary │ │ │ └── TrainingBatchGeneralClassFrm.dico │ │ ├── IdentityCard │ │ └── IdentityCard.h │ │ ├── PublicInterfaces │ │ ├── CAAGsiUserTools.h │ │ └── TestBatchGeneralClassMod.h │ │ └── TestBatchGeneralClassMod.m │ │ ├── Imakefile.mk │ │ └── src │ │ └── CAAGsiUserTools.cpp ├── WSTrainingTJM │ ├── FMPublic │ │ ├── CNext │ │ │ └── code │ │ │ │ └── dictionary │ │ │ │ └── FMPublic.dico │ │ ├── IdentityCard │ │ │ └── IdentityCard.h │ │ ├── ModPubExcel.m │ │ │ ├── Imakefile.mk │ │ │ └── src │ │ │ │ ├── ClsOfExcelOperation.cpp │ │ │ │ └── ExcelRW.cpp │ │ └── PublicInterfaces │ │ │ ├── CApplication.h │ │ │ ├── CBorder.h │ │ │ ├── CBorders.h │ │ │ ├── CExcelFont.h │ │ │ ├── CInterior.h │ │ │ ├── CPicture.h │ │ │ ├── CPictures.h │ │ │ ├── CRange - 副本.h │ │ │ ├── CRange.h │ │ │ ├── CWorkbook.h │ │ │ ├── CWorkbooks.h │ │ │ ├── CWorksheet.h │ │ │ ├── CWorksheets.h │ │ │ ├── ClsOfExcelOperation.h │ │ │ ├── ExcelRW.h │ │ │ └── ModPubExcel.h │ ├── FrmTXTRead │ │ ├── CAADegMultiDocCmd.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ └── CAADegSampleMultiDocumentCommand.h │ │ │ └── src │ │ │ │ └── CAADegSampleMultiDocumentCommand.cpp │ │ ├── CNext │ │ │ ├── code │ │ │ │ └── dictionary │ │ │ │ │ ├── FrmTXTRead.dico │ │ │ │ │ └── FrmTXTRead.iid │ │ │ └── resources │ │ │ │ ├── graphic │ │ │ │ ├── 1.bmp │ │ │ │ ├── 2.bmp │ │ │ │ ├── Part_Template │ │ │ │ │ └── Part1.CATPart │ │ │ │ ├── Template │ │ │ │ │ ├── Config.xml │ │ │ │ │ ├── Screw.CATPart │ │ │ │ │ ├── Template.xlsx │ │ │ │ │ └── XMLConfig.xml │ │ │ │ ├── YFWhiteList.txt │ │ │ │ ├── icons │ │ │ │ │ └── normal │ │ │ │ │ │ └── I_SelectPath.bmp │ │ │ │ ├── oscar_1.bmp │ │ │ │ ├── oscar_2.bmp │ │ │ │ ├── oscar_3.bmp │ │ │ │ └── xml │ │ │ │ │ └── TestEnvelopeConfig.xml │ │ │ │ └── msgcatalog │ │ │ │ ├── CopyPasteCmd.CATNls │ │ │ │ ├── CopyPasteDlg.CATNls │ │ │ │ ├── CopyPasteDlg.CATRsc │ │ │ │ ├── CopyPasteNewCmd.CATNls │ │ │ │ ├── CopyPasteNewDlg.CATNls │ │ │ │ ├── CopyPasteNewDlg.CATRsc │ │ │ │ ├── CreateCubeFilletCmd.CATNls │ │ │ │ ├── CreateCubeFilletDlg.CATNls │ │ │ │ ├── CreateCubeFilletDlg.CATRsc │ │ │ │ ├── CreateLineCmd.CATNls │ │ │ │ ├── CreateLineDlg.CATNls │ │ │ │ ├── CreateLineDlg.CATRsc │ │ │ │ ├── CreatePadCmd.CATNls │ │ │ │ ├── CreatePadDlg.CATNls │ │ │ │ ├── CreatePadDlg.CATRsc │ │ │ │ ├── DrwAnnotationCmd.CATNls │ │ │ │ ├── DrwAnnotationDlg.CATNls │ │ │ │ ├── DrwAnnotationDlg.CATRsc │ │ │ │ ├── DrwSetColorCmd.CATNls │ │ │ │ ├── DrwSetColorDlg.CATNls │ │ │ │ ├── DrwSetColorDlg.CATRsc │ │ │ │ ├── GridView2DCmd.CATNls │ │ │ │ ├── GridView2DDlg.CATNls │ │ │ │ ├── GridView2DDlg.CATRsc │ │ │ │ ├── ProductConstraintsCmd.CATNls │ │ │ │ ├── ProductConstraintsDlg.CATNls │ │ │ │ ├── ProductConstraintsDlg.CATRsc │ │ │ │ ├── RPSCreationCmd.CATNls │ │ │ │ ├── RPSCreationDlg.CATNls │ │ │ │ ├── RPSCreationDlg.CATRsc │ │ │ │ ├── ReadXmlCmd.CATNls │ │ │ │ ├── ReadXmlDlg.CATNls │ │ │ │ ├── ReadXmlDlg.CATRsc │ │ │ │ ├── TXTReadCmd.CATNls │ │ │ │ ├── TXTReadCmd.CATRsc │ │ │ │ ├── TestCATIAReferenceCmd.CATNls │ │ │ │ ├── TestCATIAReferenceDlg.CATNls │ │ │ │ ├── TestCATIAReferenceDlg.CATRsc │ │ │ │ ├── TestCatalogSUNLS.CATNls │ │ │ │ ├── TestCmd.CATNls │ │ │ │ ├── TestCrossDocCmd.CATNls │ │ │ │ ├── TestCrossDocDlg.CATNls │ │ │ │ ├── TestCrossDocDlg.CATRsc │ │ │ │ ├── TestCrvRadiusCmd.CATNls │ │ │ │ ├── TestCrvRadiusDlg.CATNls │ │ │ │ ├── TestCrvRadiusDlg.CATRsc │ │ │ │ ├── TestDlg.CATNls │ │ │ │ ├── TestDlg.CATRsc │ │ │ │ ├── TestDrwDimensionCmd.CATNls │ │ │ │ ├── TestDrwDimensionDlg.CATNls │ │ │ │ ├── TestDrwDimensionDlg.CATRsc │ │ │ │ ├── TestEnvelopeCmd.CATNls │ │ │ │ ├── TestEnvelopeDlg.CATNls │ │ │ │ ├── TestEnvelopeDlg.CATRsc │ │ │ │ ├── TestFeatureExtensionCmd.CATNls │ │ │ │ ├── TestMeasurementCmd.CATNls │ │ │ │ ├── TestMeasurementDlg.CATNls │ │ │ │ ├── TestMeasurementDlg.CATRsc │ │ │ │ ├── TestMechanismCmd.CATNls │ │ │ │ ├── TestMechanismDlg.CATNls │ │ │ │ ├── TestMechanismDlg.CATRsc │ │ │ │ ├── TestMultiListCmd.CATNls │ │ │ │ ├── TestMultiListDlg.CATNls │ │ │ │ ├── TestMultiListDlg.CATRsc │ │ │ │ ├── TestPictureCmd.CATNls │ │ │ │ ├── TestPictureDlg.CATNls │ │ │ │ ├── TestPictureDlg.CATRsc │ │ │ │ ├── TestProgressBarCmd.CATNls │ │ │ │ ├── TestProgressBarDlg.CATNls │ │ │ │ ├── TestProgressBarDlg.CATRsc │ │ │ │ ├── TestProjectionCmd.CATNls │ │ │ │ ├── TestProjectionDlg.CATNls │ │ │ │ ├── TestProjectionDlg.CATRsc │ │ │ │ ├── TestSectionCmd.CATNls │ │ │ │ ├── TestSoftAssembleCmd.CATNls │ │ │ │ ├── TestSoftAssembleDlg.CATNls │ │ │ │ ├── TestSoftAssembleDlg.CATRsc │ │ │ │ ├── TestTempArrowCmd.CATNls │ │ │ │ ├── TestTempArrowCmd.CATRsc │ │ │ │ ├── TestTempArrowDlg.CATNls │ │ │ │ ├── TestTempArrowDlg.CATRsc │ │ │ │ ├── TestTempPointCmd.CATNls │ │ │ │ ├── TestTempPointDlg.CATNls │ │ │ │ ├── TestTempPointDlg.CATRsc │ │ │ │ ├── TestTessellationCmd.CATNls │ │ │ │ ├── TestTessellationDlg.CATNls │ │ │ │ ├── TestTessellationDlg.CATRsc │ │ │ │ ├── TestToolingCmd.CATNls │ │ │ │ ├── TestToolingDlg.CATNls │ │ │ │ ├── TestToolingDlg.CATRsc │ │ │ │ ├── TestUIChangeCmd.CATNls │ │ │ │ ├── TestUIChangeDlg.CATNls │ │ │ │ ├── TestUIChangeDlg.CATRsc │ │ │ │ ├── TestUserDefinedMathBoxCmd.CATNls │ │ │ │ ├── WriteExcelCmd.CATNls │ │ │ │ ├── WriteExcelDlg.CATNls │ │ │ │ └── WriteExcelDlg.CATRsc │ │ ├── CopyPastMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── CopyPasteCmd.h │ │ │ │ ├── CopyPasteDlg.CATDlg │ │ │ │ └── CopyPasteDlg.h │ │ │ └── src │ │ │ │ ├── CopyPasteCmd.cpp │ │ │ │ └── CopyPasteDlg.cpp │ │ ├── CopyPasteNewMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── CopyPasteNewCmd.h │ │ │ │ ├── CopyPasteNewDlg.CATDlg │ │ │ │ └── CopyPasteNewDlg.h │ │ │ └── src │ │ │ │ ├── CopyPasteNewCmd.cpp │ │ │ │ └── CopyPasteNewDlg.cpp │ │ ├── CreateCubeFilletMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── CreateCubeFilletCmd.h │ │ │ │ ├── CreateCubeFilletDlg.CATDlg │ │ │ │ └── CreateCubeFilletDlg.h │ │ │ └── src │ │ │ │ ├── CreateCubeFilletCmd.cpp │ │ │ │ └── CreateCubeFilletDlg.cpp │ │ ├── CreatePadMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── CreatePadCmd.h │ │ │ │ ├── CreatePadDlg.CATDlg │ │ │ │ └── CreatePadDlg.h │ │ │ └── src │ │ │ │ ├── CreatePadCmd.cpp │ │ │ │ └── CreatePadDlg.cpp │ │ ├── DrwAnnotationMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── DrwAnnotationCmd.h │ │ │ │ ├── DrwAnnotationDlg.CATDlg │ │ │ │ └── DrwAnnotationDlg.h │ │ │ └── src │ │ │ │ ├── DrwAnnotationCmd.cpp │ │ │ │ └── DrwAnnotationDlg.cpp │ │ ├── DrwSetColorMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── DrwSetColorCmd.h │ │ │ │ ├── DrwSetColorDlg.CATDlg │ │ │ │ └── DrwSetColorDlg.h │ │ │ └── src │ │ │ │ ├── DrwSetColorCmd.cpp │ │ │ │ └── DrwSetColorDlg.cpp │ │ ├── FrmTXTReadUUID.m │ │ │ ├── Imakefile.mk │ │ │ └── src │ │ │ │ └── CAAITessellation.cpp │ │ ├── GridView2DMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── GridView2DCmd.h │ │ │ │ ├── GridView2DDlg.CATDlg │ │ │ │ └── GridView2DDlg.h │ │ │ └── src │ │ │ │ ├── GridView2DCmd.cpp │ │ │ │ └── GridView2DDlg.cpp │ │ ├── IdentityCard │ │ │ └── IdentityCard.h │ │ ├── MyAddinMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ └── MyAddinMain.h │ │ │ └── src │ │ │ │ └── MyAddinMain.cpp │ │ ├── ProductConstraintsMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── ProductConstraintsCmd.h │ │ │ │ ├── ProductConstraintsDlg.CATDlg │ │ │ │ └── ProductConstraintsDlg.h │ │ │ └── src │ │ │ │ ├── ProductConstraintsCmd.cpp │ │ │ │ └── ProductConstraintsDlg.cpp │ │ ├── PublicInterfaces │ │ │ ├── CAAITessellation.h │ │ │ ├── CopyPastMod.h │ │ │ ├── CopyPasteNewMod.h │ │ │ ├── CreateCubeFilletMod.h │ │ │ ├── CreatePadMod.h │ │ │ ├── DrwAnnotationMod.h │ │ │ ├── DrwSetColorMod.h │ │ │ ├── GridView2DMod.h │ │ │ ├── MyAddinMod.h │ │ │ ├── ProductConstraintsMod.h │ │ │ ├── RPSCreationMod.h │ │ │ ├── ReadXmlMod.h │ │ │ ├── StateCommandMod.h │ │ │ ├── TXTReadMod.h │ │ │ ├── TestCATIAReferenceMod.h │ │ │ ├── TestCrossDocMod.h │ │ │ ├── TestCrvRadiusMod.h │ │ │ ├── TestDrwDimensionMod.h │ │ │ ├── TestEnvelopeMod.h │ │ │ ├── TestFeatureExtensionMod.h │ │ │ ├── TestInterfaceMod.h │ │ │ ├── TestMeasurementMod.h │ │ │ ├── TestMechanismMod.h │ │ │ ├── TestMod.h │ │ │ ├── TestMultiListMod.h │ │ │ ├── TestPictureMod.h │ │ │ ├── TestProgressBarMod.h │ │ │ ├── TestProjectionMod.h │ │ │ ├── TestSectionMod.h │ │ │ ├── TestSoftAssembleMod.h │ │ │ ├── TestTempArrowMod.h │ │ │ ├── TestTempPointMod.h │ │ │ ├── TestTessellationMod.h │ │ │ ├── TestToolingMod.h │ │ │ ├── TestUIChangeMod.h │ │ │ ├── TestUserDefinedMathBox.h │ │ │ └── WriteExcelMod.h │ │ ├── RPSCreationMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── RPSCreationCmd.h │ │ │ │ ├── RPSCreationDlg.CATDlg │ │ │ │ └── RPSCreationDlg.h │ │ │ └── src │ │ │ │ ├── RPSCreationCmd.cpp │ │ │ │ └── RPSCreationDlg.cpp │ │ ├── ReadXmlMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── ReadXmlCmd.h │ │ │ │ ├── ReadXmlDlg.CATDlg │ │ │ │ └── ReadXmlDlg.h │ │ │ └── src │ │ │ │ ├── ReadXmlCmd.cpp │ │ │ │ └── ReadXmlDlg.cpp │ │ ├── StateCommandMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── CreateLineCmd.h │ │ │ │ ├── CreateLineDlg.CATDlg │ │ │ │ └── CreateLineDlg.h │ │ │ └── src │ │ │ │ ├── CreateLineCmd.cpp │ │ │ │ └── CreateLineDlg.cpp │ │ ├── TXTReadMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── TXTReadCmd.CATDlg │ │ │ │ └── TXTReadCmd.h │ │ │ └── src │ │ │ │ └── TXTReadCmd.cpp │ │ ├── TestCATIAReferenceMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── TestCATIAReferenceCmd.h │ │ │ │ ├── TestCATIAReferenceDlg.CATDlg │ │ │ │ └── TestCATIAReferenceDlg.h │ │ │ └── src │ │ │ │ ├── TestCATIAReferenceCmd.cpp │ │ │ │ └── TestCATIAReferenceDlg.cpp │ │ ├── TestCrossDocMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── TestCrossDocCmd.h │ │ │ │ ├── TestCrossDocDlg.CATDlg │ │ │ │ └── TestCrossDocDlg.h │ │ │ └── src │ │ │ │ ├── TestCrossDocCmd.cpp │ │ │ │ └── TestCrossDocDlg.cpp │ │ ├── TestCrvRadiusMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── TestCrvRadiusCmd.h │ │ │ │ ├── TestCrvRadiusDlg.CATDlg │ │ │ │ └── TestCrvRadiusDlg.h │ │ │ └── src │ │ │ │ ├── TestCrvRadiusCmd.cpp │ │ │ │ └── TestCrvRadiusDlg.cpp │ │ ├── TestDrwDimensionMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── TestDrwDimensionCmd.h │ │ │ │ ├── TestDrwDimensionDlg.CATDlg │ │ │ │ └── TestDrwDimensionDlg.h │ │ │ └── src │ │ │ │ ├── TestDrwDimensionCmd.cpp │ │ │ │ └── TestDrwDimensionDlg.cpp │ │ ├── TestEnvelopeMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── TestEnvelopeCmd.h │ │ │ │ ├── TestEnvelopeDlg.CATDlg │ │ │ │ └── TestEnvelopeDlg.h │ │ │ └── src │ │ │ │ ├── TestEnvelopeCmd.cpp │ │ │ │ └── TestEnvelopeDlg.cpp │ │ ├── TestFeatureExtensionMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ └── TestFeatureExtensionCmd.h │ │ │ └── src │ │ │ │ └── TestFeatureExtensionCmd.cpp │ │ ├── TestInterfaceMod.m │ │ │ ├── Imakefile.mk │ │ │ └── src │ │ │ │ ├── CAAITessellation.cpp │ │ │ │ └── TIE_CAAITessellation.tsrc │ │ ├── TestMeasurementMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── TestMeasurementCmd.h │ │ │ │ ├── TestMeasurementDlg.CATDlg │ │ │ │ └── TestMeasurementDlg.h │ │ │ └── src │ │ │ │ ├── TestMeasurementCmd.cpp │ │ │ │ └── TestMeasurementDlg.cpp │ │ ├── TestMechanismMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── TestMechanismCmd.h │ │ │ │ ├── TestMechanismDlg.CATDlg │ │ │ │ ├── TestMechanismDlg.h │ │ │ │ └── TestMechanismSubCmd.h │ │ │ └── src │ │ │ │ ├── TestMechanismCmd.cpp │ │ │ │ ├── TestMechanismDlg.cpp │ │ │ │ └── TestMechanismSubCmd.cpp │ │ ├── TestMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── TestCmd.h │ │ │ │ ├── TestDlg.CATDlg │ │ │ │ └── TestDlg.h │ │ │ └── src │ │ │ │ ├── TestCmd.cpp │ │ │ │ └── TestDlg.cpp │ │ ├── TestMultiListMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── TestMultiListCmd.h │ │ │ │ ├── TestMultiListDlg.CATDlg │ │ │ │ └── TestMultiListDlg.h │ │ │ └── src │ │ │ │ ├── TestMultiListCmd.cpp │ │ │ │ └── TestMultiListDlg.cpp │ │ ├── TestPictureMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── TestPictureCmd.h │ │ │ │ ├── TestPictureDlg.CATDlg │ │ │ │ └── TestPictureDlg.h │ │ │ └── src │ │ │ │ ├── TestPictureCmd.cpp │ │ │ │ └── TestPictureDlg.cpp │ │ ├── TestProgressBarMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── TestProgressBarCmd.h │ │ │ │ ├── TestProgressBarDlg.CATDlg │ │ │ │ └── TestProgressBarDlg.h │ │ │ └── src │ │ │ │ ├── TestProgressBarCmd.cpp │ │ │ │ └── TestProgressBarDlg.cpp │ │ ├── TestProjectionMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── TestProjectionCmd.h │ │ │ │ ├── TestProjectionDlg.CATDlg │ │ │ │ └── TestProjectionDlg.h │ │ │ └── src │ │ │ │ ├── TestProjectionCmd.cpp │ │ │ │ └── TestProjectionDlg.cpp │ │ ├── TestSectionMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ └── TestSectionCmd.h │ │ │ └── src │ │ │ │ └── TestSectionCmd.cpp │ │ ├── TestSoftAssembleMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── TestSoftAssembleCmd.h │ │ │ │ ├── TestSoftAssembleDlg.CATDlg │ │ │ │ └── TestSoftAssembleDlg.h │ │ │ └── src │ │ │ │ ├── TestSoftAssembleCmd.cpp │ │ │ │ └── TestSoftAssembleDlg.cpp │ │ ├── TestTempArrowMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── TestTempArrowCmd.h │ │ │ │ ├── TestTempArrowDlg.CATDlg │ │ │ │ └── TestTempArrowDlg.h │ │ │ └── src │ │ │ │ ├── TestTempArrowCmd.cpp │ │ │ │ └── TestTempArrowDlg.cpp │ │ ├── TestTempPointMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── TestTempPointCmd.h │ │ │ │ ├── TestTempPointDlg.CATDlg │ │ │ │ └── TestTempPointDlg.h │ │ │ └── src │ │ │ │ ├── TestTempPointCmd.cpp │ │ │ │ └── TestTempPointDlg.cpp │ │ ├── TestTessellationMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── TestTessellationCmd.h │ │ │ │ ├── TestTessellationDlg.CATDlg │ │ │ │ └── TestTessellationDlg.h │ │ │ └── src │ │ │ │ ├── TestTessellationCmd.cpp │ │ │ │ └── TestTessellationDlg.cpp │ │ ├── TestToolingMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── TestToolingCmd.h │ │ │ │ ├── TestToolingDlg.CATDlg │ │ │ │ └── TestToolingDlg.h │ │ │ └── src │ │ │ │ ├── TestToolingCmd.cpp │ │ │ │ └── TestToolingDlg.cpp │ │ ├── TestUIChangeMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ ├── TestUIChangeCmd.h │ │ │ │ ├── TestUIChangeDlg.CATDlg │ │ │ │ └── TestUIChangeDlg.h │ │ │ └── src │ │ │ │ ├── TestUIChangeCmd.cpp │ │ │ │ └── TestUIChangeDlg.cpp │ │ ├── TestUserDefinedMathBox.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ │ └── TestUserDefinedMathBoxCmd.h │ │ │ └── src │ │ │ │ └── TestUserDefinedMathBoxCmd.cpp │ │ └── WriteExcelMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ ├── WriteExcelCmd.h │ │ │ ├── WriteExcelDlg.CATDlg │ │ │ └── WriteExcelDlg.h │ │ │ └── src │ │ │ ├── WriteExcelCmd.cpp │ │ │ └── WriteExcelDlg.cpp │ ├── GeneralClassFrm │ │ ├── CNext │ │ │ └── code │ │ │ │ └── dictionary │ │ │ │ └── GeneralClassFrm.dico │ │ ├── GeneralClassMod.m │ │ │ ├── Imakefile.mk │ │ │ └── src │ │ │ │ ├── CAACommonModule.cpp │ │ │ │ ├── GeneralClass.cpp │ │ │ │ ├── SWIEEEleCreateViewWindowDlg.cpp │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── YFExcelClass.cpp │ │ │ │ └── excel.cpp │ │ ├── IdentityCard │ │ │ └── IdentityCard.h │ │ └── PublicInterfaces │ │ │ ├── CAACommonModule.h │ │ │ ├── GeneralClass.h │ │ │ ├── GeneralClassMod.h │ │ │ ├── SWIEEEleCreateViewWindowDlg.h │ │ │ ├── StdAfx.h │ │ │ ├── YFExcelClass.h │ │ │ └── excel.h │ ├── TrainingTempFrm │ │ ├── CNext │ │ │ └── code │ │ │ │ └── dictionary │ │ │ │ └── YFDatumTempFrm.dico │ │ ├── IdentityCard │ │ │ └── IdentityCard.h │ │ ├── PublicInterfaces │ │ │ ├── DumETempArrowInstance.h │ │ │ ├── DumETempFaceInstance.h │ │ │ ├── DumETempLineInstance.h │ │ │ ├── DumETempPlaneInstance.h │ │ │ ├── DumETempPointInstance.h │ │ │ ├── DumETempTextInstance.h │ │ │ ├── DumITempArrow.h │ │ │ ├── DumITempFace.h │ │ │ ├── DumITempLine.h │ │ │ ├── DumITempPlane.h │ │ │ ├── DumITempPoint.h │ │ │ ├── DumITempText.h │ │ │ ├── DumTempArrowComp.h │ │ │ ├── DumTempFaceComp.h │ │ │ ├── DumTempLineComp.h │ │ │ ├── DumTempPlaneComp.h │ │ │ ├── DumTempPointComp.h │ │ │ ├── DumTempTextComp.h │ │ │ └── TrainingTempM.h │ │ └── TrainingTempM.m │ │ │ ├── Imakefile.mk │ │ │ └── src │ │ │ ├── DumETempArrowInstance.cpp │ │ │ ├── DumETempFaceInstance.cpp │ │ │ ├── DumETempLineInstance.cpp │ │ │ ├── DumETempPlaneInstance.cpp │ │ │ ├── DumETempPointInstance.cpp │ │ │ ├── DumETempTextInstance.cpp │ │ │ ├── DumITempArrow.cpp │ │ │ ├── DumITempFace.cpp │ │ │ ├── DumITempLine.cpp │ │ │ ├── DumITempPlane.cpp │ │ │ ├── DumITempPoint.cpp │ │ │ ├── DumITempText.cpp │ │ │ ├── DumTempArrowComp.cpp │ │ │ ├── DumTempFaceComp.cpp │ │ │ ├── DumTempLineComp.cpp │ │ │ ├── DumTempPlaneComp.cpp │ │ │ ├── DumTempPointComp.cpp │ │ │ ├── DumTempTextComp.cpp │ │ │ ├── TIE_DumITempArrow.tsrc │ │ │ ├── TIE_DumITempFace.tsrc │ │ │ ├── TIE_DumITempLine.tsrc │ │ │ ├── TIE_DumITempPlane.tsrc │ │ │ ├── TIE_DumITempPoint.tsrc │ │ │ └── TIE_DumITempText.tsrc │ ├── TrainingViewFeedbackFrm │ │ ├── CNext │ │ │ └── code │ │ │ │ └── dictionary │ │ │ │ └── YFAirventViewFeedbackFrm.dico │ │ ├── IdentityCard │ │ │ └── IdentityCard.h │ │ ├── PublicInterfaces │ │ │ ├── TrainingViewFeedbackM.h │ │ │ └── TrainingViewerFeedbackManager.h │ │ └── TrainingViewFeedbackM.m │ │ │ ├── Imakefile.mk │ │ │ └── src │ │ │ └── TrainingViewerFeedbackManager.cpp │ └── TrainingXMLFrm │ │ ├── CNext │ │ └── code │ │ │ └── dictionary │ │ │ └── YFAirventXMLFrm.dico │ │ ├── IdentityCard │ │ └── IdentityCard.h │ │ ├── PublicInterfaces │ │ ├── TrainingXMLClass.h │ │ ├── TrainingXMLM.h │ │ ├── tinystr.h │ │ └── tinyxml.h │ │ └── TrainingXMLM.m │ │ ├── Imakefile.mk │ │ └── src │ │ ├── TrainingXMLClass.cpp │ │ ├── tinystr.cpp │ │ ├── tinyxml.cpp │ │ ├── tinyxmlerror.cpp │ │ └── tinyxmlparser.cpp ├── WSTreeViewTJM │ ├── GeneralClsFrm │ │ ├── CNext │ │ │ └── code │ │ │ │ └── dictionary │ │ │ │ └── STWeldingCheckGeneralClsFrm.dico │ │ ├── GeneralClsM.m │ │ │ ├── Imakefile.mk │ │ │ └── src │ │ │ │ └── GeneralClass.cpp │ │ ├── IdentityCard │ │ │ └── IdentityCard.h │ │ └── PublicInterfaces │ │ │ ├── GeneralClass.h │ │ │ └── GeneralClsM.h │ ├── TestTreeViewAddinFrm │ │ ├── CNext │ │ │ └── code │ │ │ │ └── dictionary │ │ │ │ └── TestTreeViewAddinFrm.dico │ │ ├── IdentityCard │ │ │ └── IdentityCard.h │ │ ├── PublicInterfaces │ │ │ └── TestAddinMod.h │ │ └── TestAddinMod.m │ │ │ ├── Imakefile.mk │ │ │ ├── LocalInterfaces │ │ │ └── TestAddin.h │ │ │ └── src │ │ │ └── TestAddin.cpp │ └── TestTreeViewFrm │ │ ├── CNext │ │ ├── code │ │ │ └── dictionary │ │ │ │ └── TestTreeViewFrm.dico │ │ └── resources │ │ │ └── msgcatalog │ │ │ ├── TestTreeViewCmd.CATNls │ │ │ ├── TestTreeViewDlg.CATNls │ │ │ └── TestTreeViewDlg.CATRsc │ │ ├── IdentityCard │ │ └── IdentityCard.h │ │ ├── PublicInterfaces │ │ └── TestTreeViewMod.h │ │ └── TestTreeViewMod.m │ │ ├── Imakefile.mk │ │ ├── LocalInterfaces │ │ ├── CAATreeCtrl.h │ │ ├── SelectTreeItemNotif.h │ │ ├── TestTreeViewCmd.h │ │ ├── TestTreeViewDlg.CATDlg │ │ └── TestTreeViewDlg.h │ │ └── src │ │ ├── CAATreeCtrl.cpp │ │ ├── SelectTreeItemNotif.cpp │ │ ├── TestTreeViewCmd.cpp │ │ └── TestTreeViewDlg.cpp └── WspRPSCreationTJM │ ├── FMPublic │ ├── CNext │ │ └── code │ │ │ └── dictionary │ │ │ └── FMPublic.dico │ ├── IdentityCard │ │ └── IdentityCard.h │ ├── ModPubExcel.m │ │ ├── Imakefile.mk │ │ └── src │ │ │ ├── ClsOfExcelOperation.cpp │ │ │ └── ExcelRW.cpp │ └── PublicInterfaces │ │ ├── CApplication.h │ │ ├── CBorder.h │ │ ├── CBorders.h │ │ ├── CExcelFont.h │ │ ├── CInterior.h │ │ ├── CPicture.h │ │ ├── CPictures.h │ │ ├── CRange - 副本.h │ │ ├── CRange.h │ │ ├── CWorkbook.h │ │ ├── CWorkbooks.h │ │ ├── CWorksheet.h │ │ ├── CWorksheets.h │ │ ├── ClsOfExcelOperation.h │ │ ├── ExcelRW.h │ │ └── ModPubExcel.h │ └── FrmRPSCreation │ ├── CNext │ ├── code │ │ └── dictionary │ │ │ └── FrmRPSCreation.dico │ └── resources │ │ ├── graphic │ │ └── DataBase │ │ │ └── DataBase.xlsx │ │ └── msgcatalog │ │ ├── RPSInsertCmd.CATNls │ │ ├── RPSInsertDlg.CATNls │ │ ├── RPSInsertDlg.CATRsc │ │ ├── UpdateDataBaseCmd.CATNls │ │ ├── UpdateDataBaseDlg.CATNls │ │ └── UpdateDataBaseDlg.CATRsc │ ├── IdentityCard │ └── IdentityCard.h │ ├── PublicInterfaces │ ├── RPSInsertMod.h │ ├── RPSaddinMod.h │ └── UpdateDataBaseMod.h │ ├── RPSInsertMod.m │ ├── Imakefile.mk │ ├── LocalInterfaces │ │ ├── RPSInsertCmd.h │ │ ├── RPSInsertDlg.CATDlg │ │ └── RPSInsertDlg.h │ └── src │ │ ├── RPSInsertCmd.cpp │ │ └── RPSInsertDlg.cpp │ ├── RPSaddinMod.m │ ├── Imakefile.mk │ ├── LocalInterfaces │ │ └── RPSaddin.h │ └── src │ │ └── RPSaddin.cpp │ └── UpdateDataBaseMod.m │ ├── Imakefile.mk │ ├── LocalInterfaces │ ├── UpdateDataBaseCmd.h │ ├── UpdateDataBaseDlg.CATDlg │ └── UpdateDataBaseDlg.h │ └── src │ ├── UpdateDataBaseCmd.cpp │ └── UpdateDataBaseDlg.cpp ├── LICENSE ├── Macros ├── ASP_Envelop.catvba ├── Bowdenzug_2-5_V5R24_rev1_TPBK2.catvba ├── BrowserOutputDoc.CATScript └── ChangeLinks.catvbs ├── README.md ├── Test_Data └── TestCrvRadius │ └── KBE1108_R19.CATPart └── bat └── RemovePDBFile.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/.gitignore -------------------------------------------------------------------------------- /CSharp_COM/CATIA_Automation/CATIA_Automation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/CSharp_COM/CATIA_Automation/CATIA_Automation.sln -------------------------------------------------------------------------------- /CSharp_COM/CATIA_Automation/CATIA_Automation/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/CSharp_COM/CATIA_Automation/CATIA_Automation/App.config -------------------------------------------------------------------------------- /CSharp_COM/CATIA_Automation/CATIA_Automation/CATIA_Automation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/CSharp_COM/CATIA_Automation/CATIA_Automation/CATIA_Automation.csproj -------------------------------------------------------------------------------- /CSharp_COM/CATIA_Automation/CATIA_Automation/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/CSharp_COM/CATIA_Automation/CATIA_Automation/Form1.Designer.cs -------------------------------------------------------------------------------- /CSharp_COM/CATIA_Automation/CATIA_Automation/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/CSharp_COM/CATIA_Automation/CATIA_Automation/Form1.cs -------------------------------------------------------------------------------- /CSharp_COM/CATIA_Automation/CATIA_Automation/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/CSharp_COM/CATIA_Automation/CATIA_Automation/Form1.resx -------------------------------------------------------------------------------- /CSharp_COM/CATIA_Automation/CATIA_Automation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/CSharp_COM/CATIA_Automation/CATIA_Automation/Program.cs -------------------------------------------------------------------------------- /CSharp_COM/CATIA_Automation/CATIA_Automation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/CSharp_COM/CATIA_Automation/CATIA_Automation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSharp_COM/CATIA_Automation/CATIA_Automation/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/CSharp_COM/CATIA_Automation/CATIA_Automation/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CSharp_COM/CATIA_Automation/CATIA_Automation/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/CSharp_COM/CATIA_Automation/CATIA_Automation/Properties/Resources.resx -------------------------------------------------------------------------------- /CSharp_COM/CATIA_Automation/CATIA_Automation/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/CSharp_COM/CATIA_Automation/CATIA_Automation/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CSharp_COM/CATIA_Automation/CATIA_Automation/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/CSharp_COM/CATIA_Automation/CATIA_Automation/Properties/Settings.settings -------------------------------------------------------------------------------- /CSharp_COM/CATIA_Automation_With_IDL/TestIDLApplication/TestIDLApplication.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/CSharp_COM/CATIA_Automation_With_IDL/TestIDLApplication/TestIDLApplication.sln -------------------------------------------------------------------------------- /CSharp_COM/CATIA_Automation_With_IDL/TestIDLApplication/TestIDLApplication/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/CSharp_COM/CATIA_Automation_With_IDL/TestIDLApplication/TestIDLApplication/Form1.Designer.cs -------------------------------------------------------------------------------- /CSharp_COM/CATIA_Automation_With_IDL/TestIDLApplication/TestIDLApplication/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/CSharp_COM/CATIA_Automation_With_IDL/TestIDLApplication/TestIDLApplication/Form1.cs -------------------------------------------------------------------------------- /CSharp_COM/CATIA_Automation_With_IDL/TestIDLApplication/TestIDLApplication/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/CSharp_COM/CATIA_Automation_With_IDL/TestIDLApplication/TestIDLApplication/Form1.resx -------------------------------------------------------------------------------- /CSharp_COM/CATIA_Automation_With_IDL/TestIDLApplication/TestIDLApplication/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/CSharp_COM/CATIA_Automation_With_IDL/TestIDLApplication/TestIDLApplication/Program.cs -------------------------------------------------------------------------------- /Code/TJMBeginApplicationWsp/TJMBeginApplicationFrm/CNext/resources/msgcatalog/TestDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TJMBeginApplicationWsp/TJMBeginApplicationFrm/CNext/resources/msgcatalog/TestDlg.CATNls -------------------------------------------------------------------------------- /Code/TJMBeginApplicationWsp/TJMBeginApplicationFrm/CNext/resources/msgcatalog/TestDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TJMBeginApplicationWsp/TJMBeginApplicationFrm/CNext/resources/msgcatalog/TestDlg.CATRsc -------------------------------------------------------------------------------- /Code/TJMBeginApplicationWsp/TJMBeginApplicationFrm/IdentityCard/IdentityCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TJMBeginApplicationWsp/TJMBeginApplicationFrm/IdentityCard/IdentityCard.h -------------------------------------------------------------------------------- /Code/TJMBeginApplicationWsp/TJMBeginApplicationFrm/PublicInterfaces/TJMBeginApplicationM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TJMBeginApplicationWsp/TJMBeginApplicationFrm/PublicInterfaces/TJMBeginApplicationM.h -------------------------------------------------------------------------------- /Code/TJMBeginApplicationWsp/TJMBeginApplicationFrm/PublicInterfaces/TestM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TJMBeginApplicationWsp/TJMBeginApplicationFrm/PublicInterfaces/TestM.h -------------------------------------------------------------------------------- /Code/TJMBeginApplicationWsp/TJMBeginApplicationFrm/TJMBeginApplicationM.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TJMBeginApplicationWsp/TJMBeginApplicationFrm/TJMBeginApplicationM.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/TJMBeginApplicationWsp/TJMBeginApplicationFrm/TestM.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TJMBeginApplicationWsp/TJMBeginApplicationFrm/TestM.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/TJMBeginApplicationWsp/TJMBeginApplicationFrm/TestM.m/LocalInterfaces/TestDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TJMBeginApplicationWsp/TJMBeginApplicationFrm/TestM.m/LocalInterfaces/TestDlg.CATDlg -------------------------------------------------------------------------------- /Code/TJMBeginApplicationWsp/TJMBeginApplicationFrm/TestM.m/LocalInterfaces/TestDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TJMBeginApplicationWsp/TJMBeginApplicationFrm/TestM.m/LocalInterfaces/TestDlg.h -------------------------------------------------------------------------------- /Code/TJMBeginApplicationWsp/TJMBeginApplicationFrm/TestM.m/src/TestBatchCreatePointCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TJMBeginApplicationWsp/TJMBeginApplicationFrm/TestM.m/src/TestBatchCreatePointCmd.cpp -------------------------------------------------------------------------------- /Code/TJMBeginApplicationWsp/TJMBeginApplicationFrm/TestM.m/src/TestDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TJMBeginApplicationWsp/TJMBeginApplicationFrm/TestM.m/src/TestDlg.cpp -------------------------------------------------------------------------------- /Code/TJMWheelHouseDraftWsp/TJMWheelHouseDraftAddinFrm/IdentityCard/IdentityCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TJMWheelHouseDraftWsp/TJMWheelHouseDraftAddinFrm/IdentityCard/IdentityCard.h -------------------------------------------------------------------------------- /Code/TJMWheelHouseDraftWsp/TJMWheelHouseDraftAddinFrm/PublicInterfaces/TJMWheelHouseDraftAddinM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TJMWheelHouseDraftWsp/TJMWheelHouseDraftAddinFrm/PublicInterfaces/TJMWheelHouseDraftAddinM.h -------------------------------------------------------------------------------- /Code/TJMWheelHouseDraftWsp/TJMWheelHouseDraftAddinFrm/TJMWheelHouseDraftAddinM.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TJMWheelHouseDraftWsp/TJMWheelHouseDraftAddinFrm/TJMWheelHouseDraftAddinM.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/TJMWheelHouseDraftWsp/TJMWheelHouseDraftGeneralFrm/IdentityCard/IdentityCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TJMWheelHouseDraftWsp/TJMWheelHouseDraftGeneralFrm/IdentityCard/IdentityCard.h -------------------------------------------------------------------------------- /Code/TJMWheelHouseDraftWsp/TJMWheelHouseDraftGeneralFrm/TJMWheelHouseDraftGeneralM.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TJMWheelHouseDraftWsp/TJMWheelHouseDraftGeneralFrm/TJMWheelHouseDraftGeneralM.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/TJMWheelHouseDraftWsp/TJMWheelHouseDraftUIFrm/CNext/resources/msgcatalog/TJMWheelHouseDraftCmd.CATNls: -------------------------------------------------------------------------------- 1 | TJMWheelHouseDraftCmd.initialState.Message="Click anywhere in the viewer to exit"; 2 | -------------------------------------------------------------------------------- /Code/TJMWheelHouseDraftWsp/TJMWheelHouseDraftUIFrm/IdentityCard/IdentityCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TJMWheelHouseDraftWsp/TJMWheelHouseDraftUIFrm/IdentityCard/IdentityCard.h -------------------------------------------------------------------------------- /Code/TJMWheelHouseDraftWsp/TJMWheelHouseDraftUIFrm/PublicInterfaces/TJMWheelHouseDraftUIM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TJMWheelHouseDraftWsp/TJMWheelHouseDraftUIFrm/PublicInterfaces/TJMWheelHouseDraftUIM.h -------------------------------------------------------------------------------- /Code/TJMWheelHouseDraftWsp/TJMWheelHouseDraftUIFrm/TJMWheelHouseDraftUIM.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TJMWheelHouseDraftWsp/TJMWheelHouseDraftUIFrm/TJMWheelHouseDraftUIM.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/TestDataBaseWsp/TestAdoFrm/IdentityCard/IdentityCard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestDataBaseWsp/TestAdoFrm/IdentityCard/IdentityCard.xml -------------------------------------------------------------------------------- /Code/TestDataBaseWsp/TestAdoFrm/IdentityCard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestDataBaseWsp/TestAdoFrm/IdentityCard/README.md -------------------------------------------------------------------------------- /Code/TestDataBaseWsp/TestAdoFrm/ProtectedInterfaces/TestExeM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestDataBaseWsp/TestAdoFrm/ProtectedInterfaces/TestExeM.h -------------------------------------------------------------------------------- /Code/TestDataBaseWsp/TestAdoFrm/PublicInterfaces/AdoConn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestDataBaseWsp/TestAdoFrm/PublicInterfaces/AdoConn.h -------------------------------------------------------------------------------- /Code/TestDataBaseWsp/TestAdoFrm/PublicInterfaces/TestAdoM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestDataBaseWsp/TestAdoFrm/PublicInterfaces/TestAdoM.h -------------------------------------------------------------------------------- /Code/TestDataBaseWsp/TestAdoFrm/TestAdoM.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestDataBaseWsp/TestAdoFrm/TestAdoM.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/TestDataBaseWsp/TestAdoFrm/TestAdoM.m/src/AdoConn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestDataBaseWsp/TestAdoFrm/TestAdoM.m/src/AdoConn.cpp -------------------------------------------------------------------------------- /Code/TestDataBaseWsp/TestAdoFrm/TestExeM.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestDataBaseWsp/TestAdoFrm/TestExeM.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/TestDataBaseWsp/TestAdoFrm/TestExeM.m/src/TestExecSql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestDataBaseWsp/TestAdoFrm/TestExeM.m/src/TestExecSql.cpp -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmImpl/CNext/code/dictionary/TestIDLFrmImpl.dico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestIDLWsp/TestIDLFrmImpl/CNext/code/dictionary/TestIDLFrmImpl.dico -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmImpl/IdentityCard/IdentityCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestIDLWsp/TestIDLFrmImpl/IdentityCard/IdentityCard.h -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmImpl/IdentityCard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestIDLWsp/TestIDLFrmImpl/IdentityCard/README.md -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmImpl/IdentityCard/__IdentityCard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestIDLWsp/TestIDLFrmImpl/IdentityCard/__IdentityCard.xml -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmImpl/PublicInterfaces/TestIDLModImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestIDLWsp/TestIDLFrmImpl/PublicInterfaces/TestIDLModImpl.h -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmImpl/TestIDLModImpl.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestIDLWsp/TestIDLFrmImpl/TestIDLModImpl.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmImpl/TestIDLModImpl.m/LocalInterfaces/TestComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestIDLWsp/TestIDLFrmImpl/TestIDLModImpl.m/LocalInterfaces/TestComp.h -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmImpl/TestIDLModImpl.m/LocalInterfaces/TestCompExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestIDLWsp/TestIDLFrmImpl/TestIDLModImpl.m/LocalInterfaces/TestCompExt.h -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmImpl/TestIDLModImpl.m/LocalInterfaces/TestCompFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestIDLWsp/TestIDLFrmImpl/TestIDLModImpl.m/LocalInterfaces/TestCompFunc.h -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmImpl/TestIDLModImpl.m/src/TestComp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestIDLWsp/TestIDLFrmImpl/TestIDLModImpl.m/src/TestComp.cpp -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmImpl/TestIDLModImpl.m/src/TestCompExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestIDLWsp/TestIDLFrmImpl/TestIDLModImpl.m/src/TestCompExt.cpp -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmImpl/TestIDLModImpl.m/src/TestCompFunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestIDLWsp/TestIDLFrmImpl/TestIDLModImpl.m/src/TestCompFunc.cpp -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmInterfaces/CNext/code/dictionary/TestIDLFrmInterfaces.dico: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmInterfaces/CNext/code/dictionary/TestIDLFrmInterfaces.iid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestIDLWsp/TestIDLFrmInterfaces/CNext/code/dictionary/TestIDLFrmInterfaces.iid -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmInterfaces/IdentityCard/IdentityCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestIDLWsp/TestIDLFrmInterfaces/IdentityCard/IdentityCard.h -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmInterfaces/IdentityCard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestIDLWsp/TestIDLFrmInterfaces/IdentityCard/README.md -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmInterfaces/IdentityCard/__IdentityCard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestIDLWsp/TestIDLFrmInterfaces/IdentityCard/__IdentityCard.xml -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmInterfaces/ProtectedInterfaces/TestIDLFrmItfCPP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestIDLWsp/TestIDLFrmInterfaces/ProtectedInterfaces/TestIDLFrmItfCPP.h -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmInterfaces/PublicInterfaces/CAAIATestInterface.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestIDLWsp/TestIDLFrmInterfaces/PublicInterfaces/CAAIATestInterface.idl -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmInterfaces/TestIDLFrmItf.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestIDLWsp/TestIDLFrmInterfaces/TestIDLFrmItf.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmInterfaces/TestIDLFrmItfCPP.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestIDLWsp/TestIDLFrmInterfaces/TestIDLFrmItfCPP.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmInterfaces/TestIDLFrmProIDL.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestIDLWsp/TestIDLFrmInterfaces/TestIDLFrmProIDL.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmInterfaces/TestIDLFrmPubIDL.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestIDLWsp/TestIDLFrmInterfaces/TestIDLFrmPubIDL.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmInterfaces/TestIDLFrmTypeLib.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestIDLWsp/TestIDLFrmInterfaces/TestIDLFrmTypeLib.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/TestIDLWsp/TestIDLFrmInterfaces/TestIDLFrmTypeLib.m/src/TestIDLFrmTypeLib.tplib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/TestIDLWsp/TestIDLFrmInterfaces/TestIDLFrmTypeLib.m/src/TestIDLFrmTypeLib.tplib -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/CATfct_Transfer_OSM_CMD_Line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/CATfct_Transfer_OSM_CMD_Line.txt -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/Test.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/Test.osm -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestAddinFrm/CNext/code/dictionary/TestAddinFrm.dico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestAddinFrm/CNext/code/dictionary/TestAddinFrm.dico -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestAddinFrm/IdentityCard/IdentityCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestAddinFrm/IdentityCard/IdentityCard.h -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestAddinFrm/PublicInterfaces/TestAddinMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestAddinFrm/PublicInterfaces/TestAddinMod.h -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestAddinFrm/TestAddinMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestAddinFrm/TestAddinMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestAddinFrm/TestAddinMod.m/LocalInterfaces/TestAddin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestAddinFrm/TestAddinMod.m/LocalInterfaces/TestAddin.h -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestAddinFrm/TestAddinMod.m/src/TestAddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestAddinFrm/TestAddinMod.m/src/TestAddin.cpp -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestBatchCreateCatalog.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestBatchCreateCatalog.bat -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/CNext/code/dictionary/TestExtendPtInterfaces.iid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/CNext/code/dictionary/TestExtendPtInterfaces.iid -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/IdentityCard/IdentityCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/IdentityCard/IdentityCard.h -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/PublicInterfaces/TestExtendPtItfCPP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/PublicInterfaces/TestExtendPtItfCPP.h -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/PublicInterfaces/TstIFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/PublicInterfaces/TstIFactory.h -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/PublicInterfaces/TstIPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/PublicInterfaces/TstIPoint.h -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/TestExtendPtInterfacesUUID.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/TestExtendPtInterfacesUUID.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/TestExtendPtInterfacesUUID.m/src/TstIFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/TestExtendPtInterfacesUUID.m/src/TstIFactory.cpp -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/TestExtendPtInterfacesUUID.m/src/TstIPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/TestExtendPtInterfacesUUID.m/src/TstIPoint.cpp -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/TestExtendPtItf.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/TestExtendPtItf.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/TestExtendPtItfCPP.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/TestExtendPtItfCPP.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/TestExtendPtItfCPP.m/src/TIE_TstIFactory.tsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/TestExtendPtItfCPP.m/src/TIE_TstIFactory.tsrc -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/TestExtendPtItfCPP.m/src/TIE_TstIPoint.tsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/TestExtendPtItfCPP.m/src/TIE_TstIPoint.tsrc -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/TestExtendPtItfCPP.m/src/TstIFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/TestExtendPtItfCPP.m/src/TstIFactory.cpp -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/TestExtendPtItfCPP.m/src/TstIPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/TestExtendPtItfCPP.m/src/TstIPoint.cpp -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendUIFrm/CNext/code/dictionary/TestExtendUIFrm.dico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendUIFrm/CNext/code/dictionary/TestExtendUIFrm.dico -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendUIFrm/CNext/resources/msgcatalog/TestExtendPtCmd.CATNls: -------------------------------------------------------------------------------- 1 | TestExtendPtCmd.initialState.Message="Click anywhere in the viewer to exit"; 2 | -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendUIFrm/CNext/resources/msgcatalog/TestExtendPtDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendUIFrm/CNext/resources/msgcatalog/TestExtendPtDlg.CATNls -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendUIFrm/CNext/resources/msgcatalog/TestExtendPtDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendUIFrm/CNext/resources/msgcatalog/TestExtendPtDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendUIFrm/IdentityCard/IdentityCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendUIFrm/IdentityCard/IdentityCard.h -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendUIFrm/PublicInterfaces/TestExtendPtCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendUIFrm/PublicInterfaces/TestExtendPtCmd.h -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendUIFrm/PublicInterfaces/TestExtendPtDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendUIFrm/PublicInterfaces/TestExtendPtDlg.h -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendUIFrm/PublicInterfaces/TestExtendUIMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendUIFrm/PublicInterfaces/TestExtendUIMod.h -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendUIFrm/TestExtendUIMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendUIFrm/TestExtendUIMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendUIFrm/TestExtendUIMod.m/LocalInterfaces/TstEPointEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendUIFrm/TestExtendUIMod.m/LocalInterfaces/TstEPointEdit.h -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendUIFrm/TestExtendUIMod.m/src/TestExtendPtCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendUIFrm/TestExtendUIMod.m/src/TestExtendPtCmd.cpp -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendUIFrm/TestExtendUIMod.m/src/TestExtendPtDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendUIFrm/TestExtendUIMod.m/src/TestExtendPtDlg.cpp -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestExtendUIFrm/TestExtendUIMod.m/src/TstEPointEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestExtendUIFrm/TestExtendUIMod.m/src/TstEPointEdit.cpp -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/CNext/code/dictionary/TestFeatExtCatalogFrm.dico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/CNext/code/dictionary/TestFeatExtCatalogFrm.dico -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/CNext/resources/graphic/TestCatalog.CATfct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/CNext/resources/graphic/TestCatalog.CATfct -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/IdentityCard/IdentityCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/IdentityCard/IdentityCard.h -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/PublicInterfaces/TestExtentPtImplMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/PublicInterfaces/TestExtentPtImplMod.h -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/PublicInterfaces/TestFeatExtCatalogMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/PublicInterfaces/TestFeatExtCatalogMod.h -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/TestExtentPtImplMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/TestExtentPtImplMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/TestExtentPtImplMod.m/LocalInterfaces/TstEBuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/TestExtentPtImplMod.m/LocalInterfaces/TstEBuild.h -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/TestExtentPtImplMod.m/LocalInterfaces/TstEPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/TestExtentPtImplMod.m/LocalInterfaces/TstEPoint.h -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/TestExtentPtImplMod.m/src/TstEBuild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/TestExtentPtImplMod.m/src/TstEBuild.cpp -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/TestExtentPtImplMod.m/src/TstEFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/TestExtentPtImplMod.m/src/TstEFactory.cpp -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/TestExtentPtImplMod.m/src/TstEPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/TestExtentPtImplMod.m/src/TstEPoint.cpp -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/TestExtentPtImplMod.m/src/TstEPointIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/TestExtentPtImplMod.m/src/TstEPointIcon.cpp -------------------------------------------------------------------------------- /Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/TestFeatExtCatalogMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSFeatureExtensionTJM/TestFeatExtCatalogFrm/TestFeatExtCatalogMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingBatchTJM/TrainingBatchFrm/CNext/code/dictionary/TrainingBatchFrm.dico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingBatchTJM/TrainingBatchFrm/CNext/code/dictionary/TrainingBatchFrm.dico -------------------------------------------------------------------------------- /Code/WSTrainingBatchTJM/TrainingBatchFrm/IdentityCard/IdentityCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingBatchTJM/TrainingBatchFrm/IdentityCard/IdentityCard.h -------------------------------------------------------------------------------- /Code/WSTrainingBatchTJM/TrainingBatchFrm/PublicInterfaces/TestBatchCreatePointMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingBatchTJM/TrainingBatchFrm/PublicInterfaces/TestBatchCreatePointMod.h -------------------------------------------------------------------------------- /Code/WSTrainingBatchTJM/TrainingBatchFrm/PublicInterfaces/TestBatchMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingBatchTJM/TrainingBatchFrm/PublicInterfaces/TestBatchMod.h -------------------------------------------------------------------------------- /Code/WSTrainingBatchTJM/TrainingBatchFrm/TestBatchCreatePointMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingBatchTJM/TrainingBatchFrm/TestBatchCreatePointMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingBatchTJM/TrainingBatchFrm/TestBatchMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingBatchTJM/TrainingBatchFrm/TestBatchMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingBatchTJM/TrainingBatchFrm/TestBatchMod.m/src/TestBatch.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code/WSTrainingBatchTJM/TrainingBatchGeneralClassFrm/IdentityCard/IdentityCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingBatchTJM/TrainingBatchGeneralClassFrm/IdentityCard/IdentityCard.h -------------------------------------------------------------------------------- /Code/WSTrainingBatchTJM/TrainingBatchGeneralClassFrm/PublicInterfaces/CAAGsiUserTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingBatchTJM/TrainingBatchGeneralClassFrm/PublicInterfaces/CAAGsiUserTools.h -------------------------------------------------------------------------------- /Code/WSTrainingBatchTJM/TrainingBatchGeneralClassFrm/PublicInterfaces/TestBatchGeneralClassMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingBatchTJM/TrainingBatchGeneralClassFrm/PublicInterfaces/TestBatchGeneralClassMod.h -------------------------------------------------------------------------------- /Code/WSTrainingBatchTJM/TrainingBatchGeneralClassFrm/TestBatchGeneralClassMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingBatchTJM/TrainingBatchGeneralClassFrm/TestBatchGeneralClassMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FMPublic/CNext/code/dictionary/FMPublic.dico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FMPublic/CNext/code/dictionary/FMPublic.dico -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FMPublic/IdentityCard/IdentityCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FMPublic/IdentityCard/IdentityCard.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FMPublic/ModPubExcel.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FMPublic/ModPubExcel.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FMPublic/ModPubExcel.m/src/ClsOfExcelOperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FMPublic/ModPubExcel.m/src/ClsOfExcelOperation.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FMPublic/ModPubExcel.m/src/ExcelRW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FMPublic/ModPubExcel.m/src/ExcelRW.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FMPublic/PublicInterfaces/CApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FMPublic/PublicInterfaces/CApplication.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FMPublic/PublicInterfaces/CBorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FMPublic/PublicInterfaces/CBorder.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FMPublic/PublicInterfaces/CBorders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FMPublic/PublicInterfaces/CBorders.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FMPublic/PublicInterfaces/CExcelFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FMPublic/PublicInterfaces/CExcelFont.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FMPublic/PublicInterfaces/CInterior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FMPublic/PublicInterfaces/CInterior.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FMPublic/PublicInterfaces/CPicture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FMPublic/PublicInterfaces/CPicture.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FMPublic/PublicInterfaces/CPictures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FMPublic/PublicInterfaces/CPictures.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FMPublic/PublicInterfaces/CRange - 副本.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FMPublic/PublicInterfaces/CRange - 副本.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FMPublic/PublicInterfaces/CRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FMPublic/PublicInterfaces/CRange.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FMPublic/PublicInterfaces/CWorkbook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FMPublic/PublicInterfaces/CWorkbook.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FMPublic/PublicInterfaces/CWorkbooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FMPublic/PublicInterfaces/CWorkbooks.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FMPublic/PublicInterfaces/CWorksheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FMPublic/PublicInterfaces/CWorksheet.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FMPublic/PublicInterfaces/CWorksheets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FMPublic/PublicInterfaces/CWorksheets.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FMPublic/PublicInterfaces/ClsOfExcelOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FMPublic/PublicInterfaces/ClsOfExcelOperation.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FMPublic/PublicInterfaces/ExcelRW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FMPublic/PublicInterfaces/ExcelRW.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FMPublic/PublicInterfaces/ModPubExcel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FMPublic/PublicInterfaces/ModPubExcel.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CAADegMultiDocCmd.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CAADegMultiDocCmd.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CAADegMultiDocCmd.m/src/CAADegSampleMultiDocumentCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CAADegMultiDocCmd.m/src/CAADegSampleMultiDocumentCommand.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/code/dictionary/FrmTXTRead.dico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/code/dictionary/FrmTXTRead.dico -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/code/dictionary/FrmTXTRead.iid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/code/dictionary/FrmTXTRead.iid -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/1.bmp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/2.bmp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/Part_Template/Part1.CATPart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/Part_Template/Part1.CATPart -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/Template/Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/Template/Config.xml -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/Template/Screw.CATPart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/Template/Screw.CATPart -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/Template/Template.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/Template/Template.xlsx -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/Template/XMLConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/Template/XMLConfig.xml -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/YFWhiteList.txt: -------------------------------------------------------------------------------- 1 | aaa 2 | bbb 3 | ccc 4 | ddd 5 | eee -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/icons/normal/I_SelectPath.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/icons/normal/I_SelectPath.bmp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/oscar_1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/oscar_1.bmp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/oscar_2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/oscar_2.bmp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/oscar_3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/oscar_3.bmp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/xml/TestEnvelopeConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/graphic/xml/TestEnvelopeConfig.xml -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CopyPasteCmd.CATNls: -------------------------------------------------------------------------------- 1 | CopyPasteCmd.initialState.Message="Click anywhere in the viewer to exit"; 2 | -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CopyPasteDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CopyPasteDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CopyPasteDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CopyPasteDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CopyPasteNewCmd.CATNls: -------------------------------------------------------------------------------- 1 | CopyPasteNewCmd.initialState.Message="Click anywhere in the viewer to exit"; 2 | -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CopyPasteNewDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CopyPasteNewDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CopyPasteNewDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CopyPasteNewDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CreateCubeFilletCmd.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CreateCubeFilletCmd.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CreateCubeFilletDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CreateCubeFilletDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CreateCubeFilletDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CreateCubeFilletDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CreateLineCmd.CATNls: -------------------------------------------------------------------------------- 1 | CreateLineCmd.initialState.Message="Click anywhere in the viewer to exit"; 2 | -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CreateLineDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CreateLineDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CreateLineDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CreateLineDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CreatePadCmd.CATNls: -------------------------------------------------------------------------------- 1 | CreatePadCmd.initialState.Message="Click anywhere in the viewer to exit"; 2 | -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CreatePadDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CreatePadDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CreatePadDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/CreatePadDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/DrwAnnotationCmd.CATNls: -------------------------------------------------------------------------------- 1 | DrwAnnotationCmd.initialState.Message="Click anywhere in the viewer to exit"; 2 | -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/DrwAnnotationDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/DrwAnnotationDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/DrwAnnotationDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/DrwAnnotationDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/DrwSetColorCmd.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/DrwSetColorCmd.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/DrwSetColorDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/DrwSetColorDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/DrwSetColorDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/DrwSetColorDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/GridView2DCmd.CATNls: -------------------------------------------------------------------------------- 1 | GridView2DCmd.initialState.Message="Click anywhere in the viewer to exit"; 2 | -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/GridView2DDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/GridView2DDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/GridView2DDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/GridView2DDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/ProductConstraintsCmd.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/ProductConstraintsCmd.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/ProductConstraintsDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/ProductConstraintsDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/ProductConstraintsDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/ProductConstraintsDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/RPSCreationCmd.CATNls: -------------------------------------------------------------------------------- 1 | RPSCreationCmd.initialState.Message="Click anywhere in the viewer to exit"; 2 | -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/RPSCreationDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/RPSCreationDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/RPSCreationDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/RPSCreationDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/ReadXmlCmd.CATNls: -------------------------------------------------------------------------------- 1 | ReadXmlCmd.initialState.Message="Click anywhere in the viewer to exit"; 2 | -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/ReadXmlDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/ReadXmlDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/ReadXmlDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/ReadXmlDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TXTReadCmd.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TXTReadCmd.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TXTReadCmd.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TXTReadCmd.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestCATIAReferenceCmd.CATNls: -------------------------------------------------------------------------------- 1 | TestCATIAReferenceCmd.initialState.Message="Click anywhere in the viewer to exit"; 2 | -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestCATIAReferenceDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestCATIAReferenceDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestCATIAReferenceDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestCATIAReferenceDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestCatalogSUNLS.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestCatalogSUNLS.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestCmd.CATNls: -------------------------------------------------------------------------------- 1 | TestCmd.initialState.Message="Click anywhere in the viewer to exit"; 2 | -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestCrossDocCmd.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestCrossDocCmd.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestCrossDocDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestCrossDocDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestCrossDocDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestCrossDocDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestCrvRadiusCmd.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestCrvRadiusCmd.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestCrvRadiusDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestCrvRadiusDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestCrvRadiusDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestCrvRadiusDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestDrwDimensionCmd.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestDrwDimensionCmd.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestDrwDimensionDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestDrwDimensionDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestDrwDimensionDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestDrwDimensionDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestEnvelopeCmd.CATNls: -------------------------------------------------------------------------------- 1 | TestEnvelopeCmd.initialState.Message="Click anywhere in the viewer to exit"; 2 | -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestEnvelopeDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestEnvelopeDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestEnvelopeDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestEnvelopeDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestFeatureExtensionCmd.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestFeatureExtensionCmd.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestMeasurementCmd.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestMeasurementCmd.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestMeasurementDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestMeasurementDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestMeasurementDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestMeasurementDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestMechanismCmd.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestMechanismCmd.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestMechanismDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestMechanismDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestMechanismDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestMechanismDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestMultiListCmd.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestMultiListCmd.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestMultiListDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestMultiListDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestMultiListDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestMultiListDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestPictureCmd.CATNls: -------------------------------------------------------------------------------- 1 | TestPictureCmd.initialState.Message="Click anywhere in the viewer to exit"; 2 | -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestPictureDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestPictureDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestPictureDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestPictureDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestProgressBarCmd.CATNls: -------------------------------------------------------------------------------- 1 | TestProgressBarCmd.initialState.Message="Click anywhere in the viewer to exit"; 2 | -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestProgressBarDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestProgressBarDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestProgressBarDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestProgressBarDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestProjectionCmd.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestProjectionCmd.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestProjectionDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestProjectionDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestProjectionDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestProjectionDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestSectionCmd.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestSectionCmd.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestSoftAssembleCmd.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestSoftAssembleCmd.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestSoftAssembleDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestSoftAssembleDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestSoftAssembleDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestSoftAssembleDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestTempArrowCmd.CATNls: -------------------------------------------------------------------------------- 1 | TestTempArrowCmd.initialState.Message="Click anywhere in the viewer to exit"; 2 | -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestTempArrowCmd.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestTempArrowCmd.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestTempArrowDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestTempArrowDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestTempArrowDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestTempArrowDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestTempPointCmd.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestTempPointCmd.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestTempPointDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestTempPointDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestTempPointDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestTempPointDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestTessellationCmd.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestTessellationCmd.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestTessellationDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestTessellationDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestTessellationDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestTessellationDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestToolingCmd.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestToolingCmd.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestToolingDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestToolingDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestToolingDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestToolingDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestUIChangeCmd.CATNls: -------------------------------------------------------------------------------- 1 | TestUIChangeCmd.initialState.Message="Click anywhere in the viewer to exit"; 2 | -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestUIChangeDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestUIChangeDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestUIChangeDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestUIChangeDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestUserDefinedMathBoxCmd.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/TestUserDefinedMathBoxCmd.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/WriteExcelCmd.CATNls: -------------------------------------------------------------------------------- 1 | WriteExcelCmd.initialState.Message="Click anywhere in the viewer to exit"; 2 | -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/WriteExcelDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/WriteExcelDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/WriteExcelDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CNext/resources/msgcatalog/WriteExcelDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CopyPastMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CopyPastMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CopyPastMod.m/LocalInterfaces/CopyPasteCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CopyPastMod.m/LocalInterfaces/CopyPasteCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CopyPastMod.m/LocalInterfaces/CopyPasteDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CopyPastMod.m/LocalInterfaces/CopyPasteDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CopyPastMod.m/LocalInterfaces/CopyPasteDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CopyPastMod.m/LocalInterfaces/CopyPasteDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CopyPastMod.m/src/CopyPasteCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CopyPastMod.m/src/CopyPasteCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CopyPastMod.m/src/CopyPasteDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CopyPastMod.m/src/CopyPasteDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CopyPasteNewMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CopyPasteNewMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CopyPasteNewMod.m/LocalInterfaces/CopyPasteNewCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CopyPasteNewMod.m/LocalInterfaces/CopyPasteNewCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CopyPasteNewMod.m/LocalInterfaces/CopyPasteNewDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CopyPasteNewMod.m/LocalInterfaces/CopyPasteNewDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CopyPasteNewMod.m/LocalInterfaces/CopyPasteNewDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CopyPasteNewMod.m/LocalInterfaces/CopyPasteNewDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CopyPasteNewMod.m/src/CopyPasteNewCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CopyPasteNewMod.m/src/CopyPasteNewCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CopyPasteNewMod.m/src/CopyPasteNewDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CopyPasteNewMod.m/src/CopyPasteNewDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CreateCubeFilletMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CreateCubeFilletMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CreateCubeFilletMod.m/LocalInterfaces/CreateCubeFilletCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CreateCubeFilletMod.m/LocalInterfaces/CreateCubeFilletCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CreateCubeFilletMod.m/LocalInterfaces/CreateCubeFilletDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CreateCubeFilletMod.m/LocalInterfaces/CreateCubeFilletDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CreateCubeFilletMod.m/LocalInterfaces/CreateCubeFilletDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CreateCubeFilletMod.m/LocalInterfaces/CreateCubeFilletDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CreateCubeFilletMod.m/src/CreateCubeFilletCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CreateCubeFilletMod.m/src/CreateCubeFilletCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CreateCubeFilletMod.m/src/CreateCubeFilletDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CreateCubeFilletMod.m/src/CreateCubeFilletDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CreatePadMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CreatePadMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CreatePadMod.m/LocalInterfaces/CreatePadCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CreatePadMod.m/LocalInterfaces/CreatePadCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CreatePadMod.m/LocalInterfaces/CreatePadDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CreatePadMod.m/LocalInterfaces/CreatePadDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CreatePadMod.m/LocalInterfaces/CreatePadDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CreatePadMod.m/LocalInterfaces/CreatePadDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CreatePadMod.m/src/CreatePadCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CreatePadMod.m/src/CreatePadCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/CreatePadMod.m/src/CreatePadDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/CreatePadMod.m/src/CreatePadDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/DrwAnnotationMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/DrwAnnotationMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/DrwAnnotationMod.m/LocalInterfaces/DrwAnnotationCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/DrwAnnotationMod.m/LocalInterfaces/DrwAnnotationCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/DrwAnnotationMod.m/LocalInterfaces/DrwAnnotationDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/DrwAnnotationMod.m/LocalInterfaces/DrwAnnotationDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/DrwAnnotationMod.m/LocalInterfaces/DrwAnnotationDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/DrwAnnotationMod.m/LocalInterfaces/DrwAnnotationDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/DrwAnnotationMod.m/src/DrwAnnotationCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/DrwAnnotationMod.m/src/DrwAnnotationCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/DrwAnnotationMod.m/src/DrwAnnotationDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/DrwAnnotationMod.m/src/DrwAnnotationDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/DrwSetColorMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/DrwSetColorMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/DrwSetColorMod.m/LocalInterfaces/DrwSetColorCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/DrwSetColorMod.m/LocalInterfaces/DrwSetColorCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/DrwSetColorMod.m/LocalInterfaces/DrwSetColorDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/DrwSetColorMod.m/LocalInterfaces/DrwSetColorDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/DrwSetColorMod.m/LocalInterfaces/DrwSetColorDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/DrwSetColorMod.m/LocalInterfaces/DrwSetColorDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/DrwSetColorMod.m/src/DrwSetColorCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/DrwSetColorMod.m/src/DrwSetColorCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/DrwSetColorMod.m/src/DrwSetColorDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/DrwSetColorMod.m/src/DrwSetColorDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/FrmTXTReadUUID.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/FrmTXTReadUUID.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/FrmTXTReadUUID.m/src/CAAITessellation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/FrmTXTReadUUID.m/src/CAAITessellation.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/GridView2DMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/GridView2DMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/GridView2DMod.m/LocalInterfaces/GridView2DCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/GridView2DMod.m/LocalInterfaces/GridView2DCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/GridView2DMod.m/LocalInterfaces/GridView2DDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/GridView2DMod.m/LocalInterfaces/GridView2DDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/GridView2DMod.m/LocalInterfaces/GridView2DDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/GridView2DMod.m/LocalInterfaces/GridView2DDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/GridView2DMod.m/src/GridView2DCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/GridView2DMod.m/src/GridView2DCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/GridView2DMod.m/src/GridView2DDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/GridView2DMod.m/src/GridView2DDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/IdentityCard/IdentityCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/IdentityCard/IdentityCard.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/MyAddinMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/MyAddinMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/MyAddinMod.m/LocalInterfaces/MyAddinMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/MyAddinMod.m/LocalInterfaces/MyAddinMain.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/MyAddinMod.m/src/MyAddinMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/MyAddinMod.m/src/MyAddinMain.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/ProductConstraintsMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/ProductConstraintsMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/ProductConstraintsMod.m/LocalInterfaces/ProductConstraintsCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/ProductConstraintsMod.m/LocalInterfaces/ProductConstraintsCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/ProductConstraintsMod.m/LocalInterfaces/ProductConstraintsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/ProductConstraintsMod.m/LocalInterfaces/ProductConstraintsDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/ProductConstraintsMod.m/src/ProductConstraintsCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/ProductConstraintsMod.m/src/ProductConstraintsCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/ProductConstraintsMod.m/src/ProductConstraintsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/ProductConstraintsMod.m/src/ProductConstraintsDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/CAAITessellation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/CAAITessellation.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/CopyPastMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/CopyPastMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/CopyPasteNewMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/CopyPasteNewMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/CreateCubeFilletMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/CreateCubeFilletMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/CreatePadMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/CreatePadMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/DrwAnnotationMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/DrwAnnotationMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/DrwSetColorMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/DrwSetColorMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/GridView2DMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/GridView2DMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/MyAddinMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/MyAddinMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/ProductConstraintsMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/ProductConstraintsMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/RPSCreationMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/RPSCreationMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/ReadXmlMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/ReadXmlMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/StateCommandMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/StateCommandMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TXTReadMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TXTReadMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestCATIAReferenceMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestCATIAReferenceMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestCrossDocMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestCrossDocMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestCrvRadiusMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestCrvRadiusMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestDrwDimensionMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestDrwDimensionMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestEnvelopeMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestEnvelopeMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestFeatureExtensionMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestFeatureExtensionMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestInterfaceMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestInterfaceMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestMeasurementMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestMeasurementMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestMechanismMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestMechanismMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestMultiListMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestMultiListMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestPictureMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestPictureMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestProgressBarMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestProgressBarMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestProjectionMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestProjectionMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestSectionMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestSectionMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestSoftAssembleMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestSoftAssembleMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestTempArrowMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestTempArrowMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestTempPointMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestTempPointMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestTessellationMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestTessellationMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestToolingMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestToolingMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestUIChangeMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestUIChangeMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestUserDefinedMathBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/TestUserDefinedMathBox.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/WriteExcelMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/PublicInterfaces/WriteExcelMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/RPSCreationMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/RPSCreationMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/RPSCreationMod.m/LocalInterfaces/RPSCreationCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/RPSCreationMod.m/LocalInterfaces/RPSCreationCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/RPSCreationMod.m/LocalInterfaces/RPSCreationDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/RPSCreationMod.m/LocalInterfaces/RPSCreationDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/RPSCreationMod.m/LocalInterfaces/RPSCreationDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/RPSCreationMod.m/LocalInterfaces/RPSCreationDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/RPSCreationMod.m/src/RPSCreationCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/RPSCreationMod.m/src/RPSCreationCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/RPSCreationMod.m/src/RPSCreationDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/RPSCreationMod.m/src/RPSCreationDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/ReadXmlMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/ReadXmlMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/ReadXmlMod.m/LocalInterfaces/ReadXmlCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/ReadXmlMod.m/LocalInterfaces/ReadXmlCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/ReadXmlMod.m/LocalInterfaces/ReadXmlDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/ReadXmlMod.m/LocalInterfaces/ReadXmlDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/ReadXmlMod.m/LocalInterfaces/ReadXmlDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/ReadXmlMod.m/LocalInterfaces/ReadXmlDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/ReadXmlMod.m/src/ReadXmlCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/ReadXmlMod.m/src/ReadXmlCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/ReadXmlMod.m/src/ReadXmlDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/ReadXmlMod.m/src/ReadXmlDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/StateCommandMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/StateCommandMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/StateCommandMod.m/LocalInterfaces/CreateLineCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/StateCommandMod.m/LocalInterfaces/CreateLineCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/StateCommandMod.m/LocalInterfaces/CreateLineDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/StateCommandMod.m/LocalInterfaces/CreateLineDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/StateCommandMod.m/LocalInterfaces/CreateLineDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/StateCommandMod.m/LocalInterfaces/CreateLineDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/StateCommandMod.m/src/CreateLineCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/StateCommandMod.m/src/CreateLineCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/StateCommandMod.m/src/CreateLineDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/StateCommandMod.m/src/CreateLineDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TXTReadMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TXTReadMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TXTReadMod.m/LocalInterfaces/TXTReadCmd.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TXTReadMod.m/LocalInterfaces/TXTReadCmd.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TXTReadMod.m/LocalInterfaces/TXTReadCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TXTReadMod.m/LocalInterfaces/TXTReadCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TXTReadMod.m/src/TXTReadCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TXTReadMod.m/src/TXTReadCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestCATIAReferenceMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestCATIAReferenceMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestCATIAReferenceMod.m/LocalInterfaces/TestCATIAReferenceCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestCATIAReferenceMod.m/LocalInterfaces/TestCATIAReferenceCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestCATIAReferenceMod.m/LocalInterfaces/TestCATIAReferenceDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestCATIAReferenceMod.m/LocalInterfaces/TestCATIAReferenceDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestCATIAReferenceMod.m/src/TestCATIAReferenceCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestCATIAReferenceMod.m/src/TestCATIAReferenceCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestCATIAReferenceMod.m/src/TestCATIAReferenceDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestCATIAReferenceMod.m/src/TestCATIAReferenceDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestCrossDocMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestCrossDocMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestCrossDocMod.m/LocalInterfaces/TestCrossDocCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestCrossDocMod.m/LocalInterfaces/TestCrossDocCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestCrossDocMod.m/LocalInterfaces/TestCrossDocDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestCrossDocMod.m/LocalInterfaces/TestCrossDocDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestCrossDocMod.m/LocalInterfaces/TestCrossDocDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestCrossDocMod.m/LocalInterfaces/TestCrossDocDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestCrossDocMod.m/src/TestCrossDocCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestCrossDocMod.m/src/TestCrossDocCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestCrossDocMod.m/src/TestCrossDocDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestCrossDocMod.m/src/TestCrossDocDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestCrvRadiusMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestCrvRadiusMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestCrvRadiusMod.m/LocalInterfaces/TestCrvRadiusCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestCrvRadiusMod.m/LocalInterfaces/TestCrvRadiusCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestCrvRadiusMod.m/LocalInterfaces/TestCrvRadiusDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestCrvRadiusMod.m/LocalInterfaces/TestCrvRadiusDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestCrvRadiusMod.m/LocalInterfaces/TestCrvRadiusDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestCrvRadiusMod.m/LocalInterfaces/TestCrvRadiusDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestCrvRadiusMod.m/src/TestCrvRadiusCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestCrvRadiusMod.m/src/TestCrvRadiusCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestCrvRadiusMod.m/src/TestCrvRadiusDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestCrvRadiusMod.m/src/TestCrvRadiusDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestDrwDimensionMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestDrwDimensionMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestDrwDimensionMod.m/LocalInterfaces/TestDrwDimensionCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestDrwDimensionMod.m/LocalInterfaces/TestDrwDimensionCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestDrwDimensionMod.m/LocalInterfaces/TestDrwDimensionDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestDrwDimensionMod.m/LocalInterfaces/TestDrwDimensionDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestDrwDimensionMod.m/LocalInterfaces/TestDrwDimensionDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestDrwDimensionMod.m/LocalInterfaces/TestDrwDimensionDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestDrwDimensionMod.m/src/TestDrwDimensionCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestDrwDimensionMod.m/src/TestDrwDimensionCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestDrwDimensionMod.m/src/TestDrwDimensionDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestDrwDimensionMod.m/src/TestDrwDimensionDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestEnvelopeMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestEnvelopeMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestEnvelopeMod.m/LocalInterfaces/TestEnvelopeCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestEnvelopeMod.m/LocalInterfaces/TestEnvelopeCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestEnvelopeMod.m/LocalInterfaces/TestEnvelopeDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestEnvelopeMod.m/LocalInterfaces/TestEnvelopeDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestEnvelopeMod.m/LocalInterfaces/TestEnvelopeDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestEnvelopeMod.m/LocalInterfaces/TestEnvelopeDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestEnvelopeMod.m/src/TestEnvelopeCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestEnvelopeMod.m/src/TestEnvelopeCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestEnvelopeMod.m/src/TestEnvelopeDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestEnvelopeMod.m/src/TestEnvelopeDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestFeatureExtensionMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestFeatureExtensionMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestFeatureExtensionMod.m/src/TestFeatureExtensionCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestFeatureExtensionMod.m/src/TestFeatureExtensionCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestInterfaceMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestInterfaceMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestInterfaceMod.m/src/CAAITessellation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestInterfaceMod.m/src/CAAITessellation.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestInterfaceMod.m/src/TIE_CAAITessellation.tsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestInterfaceMod.m/src/TIE_CAAITessellation.tsrc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMeasurementMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMeasurementMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMeasurementMod.m/LocalInterfaces/TestMeasurementCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMeasurementMod.m/LocalInterfaces/TestMeasurementCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMeasurementMod.m/LocalInterfaces/TestMeasurementDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMeasurementMod.m/LocalInterfaces/TestMeasurementDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMeasurementMod.m/LocalInterfaces/TestMeasurementDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMeasurementMod.m/LocalInterfaces/TestMeasurementDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMeasurementMod.m/src/TestMeasurementCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMeasurementMod.m/src/TestMeasurementCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMeasurementMod.m/src/TestMeasurementDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMeasurementMod.m/src/TestMeasurementDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMechanismMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMechanismMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMechanismMod.m/LocalInterfaces/TestMechanismCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMechanismMod.m/LocalInterfaces/TestMechanismCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMechanismMod.m/LocalInterfaces/TestMechanismDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMechanismMod.m/LocalInterfaces/TestMechanismDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMechanismMod.m/LocalInterfaces/TestMechanismDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMechanismMod.m/LocalInterfaces/TestMechanismDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMechanismMod.m/LocalInterfaces/TestMechanismSubCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMechanismMod.m/LocalInterfaces/TestMechanismSubCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMechanismMod.m/src/TestMechanismCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMechanismMod.m/src/TestMechanismCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMechanismMod.m/src/TestMechanismDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMechanismMod.m/src/TestMechanismDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMechanismMod.m/src/TestMechanismSubCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMechanismMod.m/src/TestMechanismSubCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMod.m/LocalInterfaces/TestCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMod.m/LocalInterfaces/TestCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMod.m/LocalInterfaces/TestDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMod.m/LocalInterfaces/TestDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMod.m/LocalInterfaces/TestDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMod.m/LocalInterfaces/TestDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMod.m/src/TestCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMod.m/src/TestCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMod.m/src/TestDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMod.m/src/TestDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMultiListMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMultiListMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMultiListMod.m/LocalInterfaces/TestMultiListCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMultiListMod.m/LocalInterfaces/TestMultiListCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMultiListMod.m/LocalInterfaces/TestMultiListDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMultiListMod.m/LocalInterfaces/TestMultiListDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMultiListMod.m/LocalInterfaces/TestMultiListDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMultiListMod.m/LocalInterfaces/TestMultiListDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMultiListMod.m/src/TestMultiListCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMultiListMod.m/src/TestMultiListCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestMultiListMod.m/src/TestMultiListDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestMultiListMod.m/src/TestMultiListDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestPictureMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestPictureMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestPictureMod.m/LocalInterfaces/TestPictureCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestPictureMod.m/LocalInterfaces/TestPictureCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestPictureMod.m/LocalInterfaces/TestPictureDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestPictureMod.m/LocalInterfaces/TestPictureDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestPictureMod.m/LocalInterfaces/TestPictureDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestPictureMod.m/LocalInterfaces/TestPictureDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestPictureMod.m/src/TestPictureCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestPictureMod.m/src/TestPictureCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestPictureMod.m/src/TestPictureDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestPictureMod.m/src/TestPictureDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestProgressBarMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestProgressBarMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestProgressBarMod.m/LocalInterfaces/TestProgressBarCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestProgressBarMod.m/LocalInterfaces/TestProgressBarCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestProgressBarMod.m/LocalInterfaces/TestProgressBarDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestProgressBarMod.m/LocalInterfaces/TestProgressBarDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestProgressBarMod.m/LocalInterfaces/TestProgressBarDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestProgressBarMod.m/LocalInterfaces/TestProgressBarDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestProgressBarMod.m/src/TestProgressBarCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestProgressBarMod.m/src/TestProgressBarCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestProgressBarMod.m/src/TestProgressBarDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestProgressBarMod.m/src/TestProgressBarDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestProjectionMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestProjectionMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestProjectionMod.m/LocalInterfaces/TestProjectionCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestProjectionMod.m/LocalInterfaces/TestProjectionCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestProjectionMod.m/LocalInterfaces/TestProjectionDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestProjectionMod.m/LocalInterfaces/TestProjectionDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestProjectionMod.m/LocalInterfaces/TestProjectionDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestProjectionMod.m/LocalInterfaces/TestProjectionDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestProjectionMod.m/src/TestProjectionCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestProjectionMod.m/src/TestProjectionCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestProjectionMod.m/src/TestProjectionDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestProjectionMod.m/src/TestProjectionDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestSectionMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestSectionMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestSectionMod.m/LocalInterfaces/TestSectionCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestSectionMod.m/LocalInterfaces/TestSectionCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestSectionMod.m/src/TestSectionCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestSectionMod.m/src/TestSectionCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestSoftAssembleMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestSoftAssembleMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestSoftAssembleMod.m/LocalInterfaces/TestSoftAssembleCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestSoftAssembleMod.m/LocalInterfaces/TestSoftAssembleCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestSoftAssembleMod.m/LocalInterfaces/TestSoftAssembleDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestSoftAssembleMod.m/LocalInterfaces/TestSoftAssembleDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestSoftAssembleMod.m/LocalInterfaces/TestSoftAssembleDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestSoftAssembleMod.m/LocalInterfaces/TestSoftAssembleDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestSoftAssembleMod.m/src/TestSoftAssembleCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestSoftAssembleMod.m/src/TestSoftAssembleCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestSoftAssembleMod.m/src/TestSoftAssembleDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestSoftAssembleMod.m/src/TestSoftAssembleDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestTempArrowMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestTempArrowMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestTempArrowMod.m/LocalInterfaces/TestTempArrowCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestTempArrowMod.m/LocalInterfaces/TestTempArrowCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestTempArrowMod.m/LocalInterfaces/TestTempArrowDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestTempArrowMod.m/LocalInterfaces/TestTempArrowDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestTempArrowMod.m/LocalInterfaces/TestTempArrowDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestTempArrowMod.m/LocalInterfaces/TestTempArrowDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestTempArrowMod.m/src/TestTempArrowCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestTempArrowMod.m/src/TestTempArrowCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestTempArrowMod.m/src/TestTempArrowDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestTempArrowMod.m/src/TestTempArrowDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestTempPointMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestTempPointMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestTempPointMod.m/LocalInterfaces/TestTempPointCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestTempPointMod.m/LocalInterfaces/TestTempPointCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestTempPointMod.m/LocalInterfaces/TestTempPointDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestTempPointMod.m/LocalInterfaces/TestTempPointDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestTempPointMod.m/LocalInterfaces/TestTempPointDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestTempPointMod.m/LocalInterfaces/TestTempPointDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestTempPointMod.m/src/TestTempPointCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestTempPointMod.m/src/TestTempPointCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestTempPointMod.m/src/TestTempPointDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestTempPointMod.m/src/TestTempPointDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestTessellationMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestTessellationMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestTessellationMod.m/LocalInterfaces/TestTessellationCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestTessellationMod.m/LocalInterfaces/TestTessellationCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestTessellationMod.m/LocalInterfaces/TestTessellationDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestTessellationMod.m/LocalInterfaces/TestTessellationDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestTessellationMod.m/LocalInterfaces/TestTessellationDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestTessellationMod.m/LocalInterfaces/TestTessellationDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestTessellationMod.m/src/TestTessellationCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestTessellationMod.m/src/TestTessellationCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestTessellationMod.m/src/TestTessellationDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestTessellationMod.m/src/TestTessellationDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestToolingMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestToolingMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestToolingMod.m/LocalInterfaces/TestToolingCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestToolingMod.m/LocalInterfaces/TestToolingCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestToolingMod.m/LocalInterfaces/TestToolingDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestToolingMod.m/LocalInterfaces/TestToolingDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestToolingMod.m/LocalInterfaces/TestToolingDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestToolingMod.m/LocalInterfaces/TestToolingDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestToolingMod.m/src/TestToolingCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestToolingMod.m/src/TestToolingCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestToolingMod.m/src/TestToolingDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestToolingMod.m/src/TestToolingDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestUIChangeMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestUIChangeMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestUIChangeMod.m/LocalInterfaces/TestUIChangeCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestUIChangeMod.m/LocalInterfaces/TestUIChangeCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestUIChangeMod.m/LocalInterfaces/TestUIChangeDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestUIChangeMod.m/LocalInterfaces/TestUIChangeDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestUIChangeMod.m/LocalInterfaces/TestUIChangeDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestUIChangeMod.m/LocalInterfaces/TestUIChangeDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestUIChangeMod.m/src/TestUIChangeCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestUIChangeMod.m/src/TestUIChangeCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestUIChangeMod.m/src/TestUIChangeDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestUIChangeMod.m/src/TestUIChangeDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestUserDefinedMathBox.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestUserDefinedMathBox.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/TestUserDefinedMathBox.m/src/TestUserDefinedMathBoxCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/TestUserDefinedMathBox.m/src/TestUserDefinedMathBoxCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/WriteExcelMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/WriteExcelMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/WriteExcelMod.m/LocalInterfaces/WriteExcelCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/WriteExcelMod.m/LocalInterfaces/WriteExcelCmd.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/WriteExcelMod.m/LocalInterfaces/WriteExcelDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/WriteExcelMod.m/LocalInterfaces/WriteExcelDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/WriteExcelMod.m/LocalInterfaces/WriteExcelDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/WriteExcelMod.m/LocalInterfaces/WriteExcelDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/WriteExcelMod.m/src/WriteExcelCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/WriteExcelMod.m/src/WriteExcelCmd.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/FrmTXTRead/WriteExcelMod.m/src/WriteExcelDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/FrmTXTRead/WriteExcelMod.m/src/WriteExcelDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/GeneralClassFrm/CNext/code/dictionary/GeneralClassFrm.dico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/GeneralClassFrm/CNext/code/dictionary/GeneralClassFrm.dico -------------------------------------------------------------------------------- /Code/WSTrainingTJM/GeneralClassFrm/GeneralClassMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/GeneralClassFrm/GeneralClassMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/GeneralClassFrm/GeneralClassMod.m/src/CAACommonModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/GeneralClassFrm/GeneralClassMod.m/src/CAACommonModule.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/GeneralClassFrm/GeneralClassMod.m/src/GeneralClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/GeneralClassFrm/GeneralClassMod.m/src/GeneralClass.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/GeneralClassFrm/GeneralClassMod.m/src/SWIEEEleCreateViewWindowDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/GeneralClassFrm/GeneralClassMod.m/src/SWIEEEleCreateViewWindowDlg.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/GeneralClassFrm/GeneralClassMod.m/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/GeneralClassFrm/GeneralClassMod.m/src/StdAfx.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/GeneralClassFrm/GeneralClassMod.m/src/YFExcelClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/GeneralClassFrm/GeneralClassMod.m/src/YFExcelClass.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/GeneralClassFrm/GeneralClassMod.m/src/excel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/GeneralClassFrm/GeneralClassMod.m/src/excel.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/GeneralClassFrm/IdentityCard/IdentityCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/GeneralClassFrm/IdentityCard/IdentityCard.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/GeneralClassFrm/PublicInterfaces/CAACommonModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/GeneralClassFrm/PublicInterfaces/CAACommonModule.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/GeneralClassFrm/PublicInterfaces/GeneralClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/GeneralClassFrm/PublicInterfaces/GeneralClass.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/GeneralClassFrm/PublicInterfaces/GeneralClassMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/GeneralClassFrm/PublicInterfaces/GeneralClassMod.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/GeneralClassFrm/PublicInterfaces/SWIEEEleCreateViewWindowDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/GeneralClassFrm/PublicInterfaces/SWIEEEleCreateViewWindowDlg.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/GeneralClassFrm/PublicInterfaces/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/GeneralClassFrm/PublicInterfaces/StdAfx.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/GeneralClassFrm/PublicInterfaces/YFExcelClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/GeneralClassFrm/PublicInterfaces/YFExcelClass.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/GeneralClassFrm/PublicInterfaces/excel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/GeneralClassFrm/PublicInterfaces/excel.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/CNext/code/dictionary/YFDatumTempFrm.dico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/CNext/code/dictionary/YFDatumTempFrm.dico -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/IdentityCard/IdentityCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/IdentityCard/IdentityCard.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumETempArrowInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumETempArrowInstance.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumETempFaceInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumETempFaceInstance.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumETempLineInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumETempLineInstance.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumETempPlaneInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumETempPlaneInstance.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumETempPointInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumETempPointInstance.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumETempTextInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumETempTextInstance.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumITempArrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumITempArrow.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumITempFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumITempFace.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumITempLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumITempLine.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumITempPlane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumITempPlane.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumITempPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumITempPoint.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumITempText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumITempText.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumTempArrowComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumTempArrowComp.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumTempFaceComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumTempFaceComp.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumTempLineComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumTempLineComp.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumTempPlaneComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumTempPlaneComp.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumTempPointComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumTempPointComp.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumTempTextComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/DumTempTextComp.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/TrainingTempM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/PublicInterfaces/TrainingTempM.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumETempArrowInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumETempArrowInstance.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumETempFaceInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumETempFaceInstance.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumETempLineInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumETempLineInstance.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumETempPlaneInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumETempPlaneInstance.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumETempPointInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumETempPointInstance.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumETempTextInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumETempTextInstance.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumITempArrow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumITempArrow.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumITempFace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumITempFace.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumITempLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumITempLine.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumITempPlane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumITempPlane.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumITempPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumITempPoint.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumITempText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumITempText.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumTempArrowComp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumTempArrowComp.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumTempFaceComp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumTempFaceComp.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumTempLineComp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumTempLineComp.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumTempPlaneComp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumTempPlaneComp.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumTempPointComp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumTempPointComp.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumTempTextComp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/DumTempTextComp.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/TIE_DumITempArrow.tsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/TIE_DumITempArrow.tsrc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/TIE_DumITempFace.tsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/TIE_DumITempFace.tsrc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/TIE_DumITempLine.tsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/TIE_DumITempLine.tsrc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/TIE_DumITempPlane.tsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/TIE_DumITempPlane.tsrc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/TIE_DumITempPoint.tsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/TIE_DumITempPoint.tsrc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/TIE_DumITempText.tsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingTempFrm/TrainingTempM.m/src/TIE_DumITempText.tsrc -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingViewFeedbackFrm/CNext/code/dictionary/YFAirventViewFeedbackFrm.dico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingViewFeedbackFrm/CNext/code/dictionary/YFAirventViewFeedbackFrm.dico -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingViewFeedbackFrm/IdentityCard/IdentityCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingViewFeedbackFrm/IdentityCard/IdentityCard.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingViewFeedbackFrm/PublicInterfaces/TrainingViewFeedbackM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingViewFeedbackFrm/PublicInterfaces/TrainingViewFeedbackM.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingViewFeedbackFrm/PublicInterfaces/TrainingViewerFeedbackManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingViewFeedbackFrm/PublicInterfaces/TrainingViewerFeedbackManager.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingViewFeedbackFrm/TrainingViewFeedbackM.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingViewFeedbackFrm/TrainingViewFeedbackM.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingXMLFrm/CNext/code/dictionary/YFAirventXMLFrm.dico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingXMLFrm/CNext/code/dictionary/YFAirventXMLFrm.dico -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingXMLFrm/IdentityCard/IdentityCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingXMLFrm/IdentityCard/IdentityCard.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingXMLFrm/PublicInterfaces/TrainingXMLClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingXMLFrm/PublicInterfaces/TrainingXMLClass.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingXMLFrm/PublicInterfaces/TrainingXMLM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingXMLFrm/PublicInterfaces/TrainingXMLM.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingXMLFrm/PublicInterfaces/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingXMLFrm/PublicInterfaces/tinystr.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingXMLFrm/PublicInterfaces/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingXMLFrm/PublicInterfaces/tinyxml.h -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingXMLFrm/TrainingXMLM.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingXMLFrm/TrainingXMLM.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingXMLFrm/TrainingXMLM.m/src/TrainingXMLClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingXMLFrm/TrainingXMLM.m/src/TrainingXMLClass.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingXMLFrm/TrainingXMLM.m/src/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingXMLFrm/TrainingXMLM.m/src/tinystr.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingXMLFrm/TrainingXMLM.m/src/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingXMLFrm/TrainingXMLM.m/src/tinyxml.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingXMLFrm/TrainingXMLM.m/src/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingXMLFrm/TrainingXMLM.m/src/tinyxmlerror.cpp -------------------------------------------------------------------------------- /Code/WSTrainingTJM/TrainingXMLFrm/TrainingXMLM.m/src/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTrainingTJM/TrainingXMLFrm/TrainingXMLM.m/src/tinyxmlparser.cpp -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/GeneralClsFrm/CNext/code/dictionary/STWeldingCheckGeneralClsFrm.dico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/GeneralClsFrm/CNext/code/dictionary/STWeldingCheckGeneralClsFrm.dico -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/GeneralClsFrm/GeneralClsM.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/GeneralClsFrm/GeneralClsM.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/GeneralClsFrm/GeneralClsM.m/src/GeneralClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/GeneralClsFrm/GeneralClsM.m/src/GeneralClass.cpp -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/GeneralClsFrm/IdentityCard/IdentityCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/GeneralClsFrm/IdentityCard/IdentityCard.h -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/GeneralClsFrm/PublicInterfaces/GeneralClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/GeneralClsFrm/PublicInterfaces/GeneralClass.h -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/GeneralClsFrm/PublicInterfaces/GeneralClsM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/GeneralClsFrm/PublicInterfaces/GeneralClsM.h -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/TestTreeViewAddinFrm/CNext/code/dictionary/TestTreeViewAddinFrm.dico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/TestTreeViewAddinFrm/CNext/code/dictionary/TestTreeViewAddinFrm.dico -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/TestTreeViewAddinFrm/IdentityCard/IdentityCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/TestTreeViewAddinFrm/IdentityCard/IdentityCard.h -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/TestTreeViewAddinFrm/PublicInterfaces/TestAddinMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/TestTreeViewAddinFrm/PublicInterfaces/TestAddinMod.h -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/TestTreeViewAddinFrm/TestAddinMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/TestTreeViewAddinFrm/TestAddinMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/TestTreeViewAddinFrm/TestAddinMod.m/LocalInterfaces/TestAddin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/TestTreeViewAddinFrm/TestAddinMod.m/LocalInterfaces/TestAddin.h -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/TestTreeViewAddinFrm/TestAddinMod.m/src/TestAddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/TestTreeViewAddinFrm/TestAddinMod.m/src/TestAddin.cpp -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/TestTreeViewFrm/CNext/code/dictionary/TestTreeViewFrm.dico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/TestTreeViewFrm/CNext/code/dictionary/TestTreeViewFrm.dico -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/TestTreeViewFrm/CNext/resources/msgcatalog/TestTreeViewCmd.CATNls: -------------------------------------------------------------------------------- 1 | TestTreeViewCmd.initialState.Message="Click anywhere in the viewer to exit"; 2 | -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/TestTreeViewFrm/CNext/resources/msgcatalog/TestTreeViewDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/TestTreeViewFrm/CNext/resources/msgcatalog/TestTreeViewDlg.CATNls -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/TestTreeViewFrm/CNext/resources/msgcatalog/TestTreeViewDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/TestTreeViewFrm/CNext/resources/msgcatalog/TestTreeViewDlg.CATRsc -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/TestTreeViewFrm/IdentityCard/IdentityCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/TestTreeViewFrm/IdentityCard/IdentityCard.h -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/TestTreeViewFrm/PublicInterfaces/TestTreeViewMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/TestTreeViewFrm/PublicInterfaces/TestTreeViewMod.h -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/TestTreeViewFrm/TestTreeViewMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/TestTreeViewFrm/TestTreeViewMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/TestTreeViewFrm/TestTreeViewMod.m/LocalInterfaces/CAATreeCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/TestTreeViewFrm/TestTreeViewMod.m/LocalInterfaces/CAATreeCtrl.h -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/TestTreeViewFrm/TestTreeViewMod.m/LocalInterfaces/SelectTreeItemNotif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/TestTreeViewFrm/TestTreeViewMod.m/LocalInterfaces/SelectTreeItemNotif.h -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/TestTreeViewFrm/TestTreeViewMod.m/LocalInterfaces/TestTreeViewCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/TestTreeViewFrm/TestTreeViewMod.m/LocalInterfaces/TestTreeViewCmd.h -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/TestTreeViewFrm/TestTreeViewMod.m/LocalInterfaces/TestTreeViewDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/TestTreeViewFrm/TestTreeViewMod.m/LocalInterfaces/TestTreeViewDlg.CATDlg -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/TestTreeViewFrm/TestTreeViewMod.m/LocalInterfaces/TestTreeViewDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/TestTreeViewFrm/TestTreeViewMod.m/LocalInterfaces/TestTreeViewDlg.h -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/TestTreeViewFrm/TestTreeViewMod.m/src/CAATreeCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/TestTreeViewFrm/TestTreeViewMod.m/src/CAATreeCtrl.cpp -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/TestTreeViewFrm/TestTreeViewMod.m/src/SelectTreeItemNotif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/TestTreeViewFrm/TestTreeViewMod.m/src/SelectTreeItemNotif.cpp -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/TestTreeViewFrm/TestTreeViewMod.m/src/TestTreeViewCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/TestTreeViewFrm/TestTreeViewMod.m/src/TestTreeViewCmd.cpp -------------------------------------------------------------------------------- /Code/WSTreeViewTJM/TestTreeViewFrm/TestTreeViewMod.m/src/TestTreeViewDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WSTreeViewTJM/TestTreeViewFrm/TestTreeViewMod.m/src/TestTreeViewDlg.cpp -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FMPublic/CNext/code/dictionary/FMPublic.dico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FMPublic/CNext/code/dictionary/FMPublic.dico -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FMPublic/IdentityCard/IdentityCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FMPublic/IdentityCard/IdentityCard.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FMPublic/ModPubExcel.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FMPublic/ModPubExcel.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FMPublic/ModPubExcel.m/src/ClsOfExcelOperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FMPublic/ModPubExcel.m/src/ClsOfExcelOperation.cpp -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FMPublic/ModPubExcel.m/src/ExcelRW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FMPublic/ModPubExcel.m/src/ExcelRW.cpp -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CApplication.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CBorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CBorder.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CBorders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CBorders.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CExcelFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CExcelFont.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CInterior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CInterior.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CPicture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CPicture.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CPictures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CPictures.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CRange - 副本.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CRange - 副本.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CRange.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CWorkbook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CWorkbook.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CWorkbooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CWorkbooks.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CWorksheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CWorksheet.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CWorksheets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/CWorksheets.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/ClsOfExcelOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/ClsOfExcelOperation.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/ExcelRW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/ExcelRW.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/ModPubExcel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FMPublic/PublicInterfaces/ModPubExcel.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/CNext/code/dictionary/FrmRPSCreation.dico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FrmRPSCreation/CNext/code/dictionary/FrmRPSCreation.dico -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/CNext/resources/graphic/DataBase/DataBase.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FrmRPSCreation/CNext/resources/graphic/DataBase/DataBase.xlsx -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/CNext/resources/msgcatalog/RPSInsertCmd.CATNls: -------------------------------------------------------------------------------- 1 | RPSInsertCmd.initialState.Message="Click anywhere in the viewer to exit"; 2 | -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/CNext/resources/msgcatalog/RPSInsertDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FrmRPSCreation/CNext/resources/msgcatalog/RPSInsertDlg.CATNls -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/CNext/resources/msgcatalog/RPSInsertDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FrmRPSCreation/CNext/resources/msgcatalog/RPSInsertDlg.CATRsc -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/CNext/resources/msgcatalog/UpdateDataBaseCmd.CATNls: -------------------------------------------------------------------------------- 1 | UpdateDataBaseCmd.initialState.Message="Click anywhere in the viewer to exit"; 2 | -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/CNext/resources/msgcatalog/UpdateDataBaseDlg.CATNls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FrmRPSCreation/CNext/resources/msgcatalog/UpdateDataBaseDlg.CATNls -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/CNext/resources/msgcatalog/UpdateDataBaseDlg.CATRsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FrmRPSCreation/CNext/resources/msgcatalog/UpdateDataBaseDlg.CATRsc -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/IdentityCard/IdentityCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FrmRPSCreation/IdentityCard/IdentityCard.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/PublicInterfaces/RPSInsertMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FrmRPSCreation/PublicInterfaces/RPSInsertMod.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/PublicInterfaces/RPSaddinMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FrmRPSCreation/PublicInterfaces/RPSaddinMod.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/PublicInterfaces/UpdateDataBaseMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FrmRPSCreation/PublicInterfaces/UpdateDataBaseMod.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/RPSInsertMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FrmRPSCreation/RPSInsertMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/RPSInsertMod.m/LocalInterfaces/RPSInsertCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FrmRPSCreation/RPSInsertMod.m/LocalInterfaces/RPSInsertCmd.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/RPSInsertMod.m/LocalInterfaces/RPSInsertDlg.CATDlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FrmRPSCreation/RPSInsertMod.m/LocalInterfaces/RPSInsertDlg.CATDlg -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/RPSInsertMod.m/LocalInterfaces/RPSInsertDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FrmRPSCreation/RPSInsertMod.m/LocalInterfaces/RPSInsertDlg.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/RPSInsertMod.m/src/RPSInsertCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FrmRPSCreation/RPSInsertMod.m/src/RPSInsertCmd.cpp -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/RPSInsertMod.m/src/RPSInsertDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FrmRPSCreation/RPSInsertMod.m/src/RPSInsertDlg.cpp -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/RPSaddinMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FrmRPSCreation/RPSaddinMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/RPSaddinMod.m/LocalInterfaces/RPSaddin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FrmRPSCreation/RPSaddinMod.m/LocalInterfaces/RPSaddin.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/RPSaddinMod.m/src/RPSaddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FrmRPSCreation/RPSaddinMod.m/src/RPSaddin.cpp -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/UpdateDataBaseMod.m/Imakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FrmRPSCreation/UpdateDataBaseMod.m/Imakefile.mk -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/UpdateDataBaseMod.m/LocalInterfaces/UpdateDataBaseCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FrmRPSCreation/UpdateDataBaseMod.m/LocalInterfaces/UpdateDataBaseCmd.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/UpdateDataBaseMod.m/LocalInterfaces/UpdateDataBaseDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FrmRPSCreation/UpdateDataBaseMod.m/LocalInterfaces/UpdateDataBaseDlg.h -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/UpdateDataBaseMod.m/src/UpdateDataBaseCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FrmRPSCreation/UpdateDataBaseMod.m/src/UpdateDataBaseCmd.cpp -------------------------------------------------------------------------------- /Code/WspRPSCreationTJM/FrmRPSCreation/UpdateDataBaseMod.m/src/UpdateDataBaseDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Code/WspRPSCreationTJM/FrmRPSCreation/UpdateDataBaseMod.m/src/UpdateDataBaseDlg.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/LICENSE -------------------------------------------------------------------------------- /Macros/ASP_Envelop.catvba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Macros/ASP_Envelop.catvba -------------------------------------------------------------------------------- /Macros/Bowdenzug_2-5_V5R24_rev1_TPBK2.catvba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Macros/Bowdenzug_2-5_V5R24_rev1_TPBK2.catvba -------------------------------------------------------------------------------- /Macros/BrowserOutputDoc.CATScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Macros/BrowserOutputDoc.CATScript -------------------------------------------------------------------------------- /Macros/ChangeLinks.catvbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Macros/ChangeLinks.catvbs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/README.md -------------------------------------------------------------------------------- /Test_Data/TestCrvRadius/KBE1108_R19.CATPart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/Test_Data/TestCrvRadius/KBE1108_R19.CATPart -------------------------------------------------------------------------------- /bat/RemovePDBFile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdos41/CATIA_CAA_V5/HEAD/bat/RemovePDBFile.bat --------------------------------------------------------------------------------