Im Beitrag/Titel Nur im Titel Nur nach Datum sortieren Docs / Anhänge mit Lösung
Suchmaschinenstatistik
Livesuche
Einstellungen
Info

Auch mit chatGPT* können Lösungen aus dem CAD.de-Forum recherchiert werden:

* chatGPT ist eine eingetragene Marke von openAI

Ergebnisse 1 - 13, 18 Gesamtergebnisse mit Suchbegriffen catia v5 sec.

Direkter Link in ein Forum:

CATIA V5 Allgemein CATIA V5 Drafting CATIA V5 CAM CATIA V5 Kinematik DMU CATIA V5 Programmierung
CATIA V5 Flächen CATIA V5 Part / Assembly CATIA V5 Infrastruktur CATIA V5 Datentransfer CATIA V5 FEM
CATIA V5 ICEM Shape Design CATIA V5 Composite

CATIA V5 Programmierung : V5 Batchutil return code 1
sina123 am 13.03.2019 um 16:24 Uhr (1)
Hello I have an issue with running batchutils and i am unclear as to what is happening. So I have a c# program which starts a batch (the program generates the parameter file for the batch) in v5 and after execution shows the return code. All works in the local installation.I have installed Catia v5 in a VM and now i am always getting return code as 1. But the parameter file works perfect when i run batch manually using the file generated from my program ; it doesnt run as expected when i run the exe alone. ...

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : ENOVIA V6 Integration - Automation C#
sina123 am 01.04.2019 um 17:07 Uhr (1)
Hello,I have a Catia v5 installed with embedded integration  to Enovia v6/ 3d experience. I want to connect to enovia v6 through automation. But it does not happen. My code: CD5EngineV6R2014x oCD5Engine; oCD5Engine = (CD5EngineV6R2014x)_CATIAEngine.CATIA.GetItem("CD5EngineV6R2014x");The automation help in VB says (for ENOVIA V6 Integration Automation Objects):Dim CD5Engine As CD5EngineV6R2014xSet CD5Engine = CATIA.GetItem("CD5EngineV6R2014x")But when i use the C# code in my i get the method not implemented ...

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : Generate treeview for Catia structure in C#
sina123 am 29.01.2019 um 11:10 Uhr (1)
Hi I am just breaking my head in creating the Catia product structure into a treeview which shows the hierarchical structure just as in the opened document. I dont get idea how to recursively implement the same though have tried Can anyone point wat i am missing. My part of code: private void GetLinks(ProductStructureTypeLib.Product ProdPar, TreeNode rootnode) { MytreeView.Nodes.Add(rootnode); MytreeView.Nodes.Add(rootnode);if (ProdPar.Products.Count 0) { foreach (ProductStructur ...

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Part / Assembly : Generate treeview for Catia structure in C#
sina123 am 29.01.2019 um 11:10 Uhr (1)
Hi I am just breaking my head in creating the Catia product structure into a treeview which shows the hierarchical structure just as in the opened document. I dont get idea how to recursively implement the same though have tried Can anyone point wat i am missing. My part of code: private void GetLinks(ProductStructureTypeLib.Product ProdPar, TreeNode rootnode) { MytreeView.Nodes.Add(rootnode); MytreeView.Nodes.Add(rootnode);if (ProdPar.Products.Count 0) { foreach (ProductStructur ...

In das Form CATIA V5 Part / Assembly wechseln
CATIA V5 Programmierung : CATIA V5 über VBExpress starten
sina123 am 06.12.2018 um 14:45 Uhr (1)
Thanks.

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : CATIA V5 über VBExpress starten
sina123 am 06.12.2018 um 13:29 Uhr (1)
Hello i am doing something like this in C# but i would like to get a help since i will be having env and direnv values in an xml file as: D:..CNEXT.exe -env CATIA_P1.V5-6R2016.B26 -direnv "D:optcatiaCATEnv"How can i extract these and launch Catia

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : Launch Catia by opening a CATPart
sina123 am 26.11.2018 um 10:09 Uhr (1)
Hello, I am working on Catia V5 automation and have a requirement to launch Catia by clicking a CatPart/ CatProduct if Catia is not already running. I tried the below code:ProcessStartInfo startInfo = new ProcessStartInfo();startInfo.FileName = @filepath; Process.Start(startInfo);But I get error: System.ComponentModel.Win32Exception (0x80004005): An error occurred in sending the command to the applicationCan anybody help how to solve as this code works on my machine but not in other machine.

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : Launch Catia by opening a CATPart
sina123 am 26.11.2018 um 10:54 Uhr (1)
I have Catia v5 and 3dexp installed so when I tried to create instance of Catia application it opens 3d experience.System.Type objBLType = System.Type.GetTypeFromProgID("Catia.Application");object objBL = System.Activator.CreateInstance(objBLType);

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : 3dexperience- run catutlity from cmd
sina123 am 20.02.2019 um 11:42 Uhr (1)
I do not find anything similar to this manual for catia v6 and the automation help document for 3d experience does not mention anything about the catutility.

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : 3dexperience- run catutlity from cmd
sina123 am 20.02.2019 um 11:24 Uhr (1)
I have a doubt regarding catutils in 3d experience but couldnot find a related forum if possible can anybody guide to resolving issue or redirect where i can post this!Hello I am working on 3d experience (CAtia V6) and want to run a CATUTIL- "Drawing Batch" from command line, but its not getting executed and returns object not found. I used the same file which was created when i run the batch manually through the UI.I used the following:catutil -Name "Drawing Batch" C: empBatchParameters_10.47.18.xmlbut wh ...

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : How to run catutil from c# program
sina123 am 03.01.2019 um 16:25 Uhr (1)
That does not solve.Thanks but! and now it seems i am not able to get results from Catia directly also. I dont understand whats wrong. I had got success earlier but now it says "BATCH:Error Batch failed" for all batch utilities- I tried step conversion utility and Updatebatch from Catia manually Would it be some issue relating to my catia?

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : C# - How to start CATIA with env details
sina123 am 06.12.2018 um 13:09 Uhr (1)
Yes, exactly!! it helps!Thanks a lot

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : C# - How to start CATIA with env details
sina123 am 06.12.2018 um 12:27 Uhr (1)
Hi is it possible to launch Catia by including the env details, with the exe path, something like C:....incnext.exe -env CATIA_P3.V5-6R2014.B24 -direnvI am able to launch with just the path but would like to know if its posible with the full details as mentioned above. Thanks!

In das Form CATIA V5 Programmierung wechseln

Anzeige:

Anzeige: (Infos zum Werbeplatz)

Ergebnisseiten :  1   2 

Alle Produkt-, Schrift-, Firmennamen und Logos sind Warenzeichen oder eingetr. Warenzeichen der jeweiligen Firmen.
©2025 CAD.de , Lenggries. Tel: ++49 (8042) 973 8208 | Datenschutz