Informationen zum Forum CATIA V5 Programmierung:
Anzahl aktive Mitglieder: 2.322
Anzahl Beiträge: 31.786
Anzahl Themen: 6.279

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, 22 Gesamtergebnisse mit Suchbegriffen parameter catia v5 sec.
CATIA V5 Programmierung : Get value of parameter from file
sina123 am 04.02.2019 um 11:14 Uhr (1)
Thats a great information! thanks. I just created the parameter without any specific position

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : Get value of parameter from file
sina123 am 04.02.2019 um 11:05 Uhr (1)
The highlighted parameter is the one i have created.

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : Get value of parameter from file
sina123 am 04.02.2019 um 10:56 Uhr (1)
The parameter i am checking is created as part of my program itself. So is it possible to know which is created by me?[Diese Nachricht wurde von sina123 am 04. Feb. 2019 editiert.]

In das Form CATIA V5 Programmierung wechseln
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 : Get value of parameter from file
sina123 am 04.02.2019 um 12:32 Uhr (1)
Thank you..that helped!

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : Get value of parameter from file
sina123 am 04.02.2019 um 15:39 Uhr (1)
Yes, luckily i too got it this way public void RemoveParameters(KnowledgewareTypeLib.Parameters Params) { for(int i=1;i=Params.Count;i++) { if (Params.Item(i).UserAccessMode == 2) { Params.Remove(i); } } }Thanks for the quick reply

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : How to run catutil from c# program
sina123 am 03.01.2019 um 15:52 Uhr (1)
Hi, I have a requirement to run some utilities from my c# program. I tried to run UpdateBatch Utility with the parameter file in the following way as arguments to start process but nothing happens: D:...CATSTART.exe –run CATUTIL - Name UpdateBatch D:atchparam.xml -env CATIA_P1.V5-6R2016.B26 -direnv D:optcatiaCATEnvIs this the right way to run a catutil(i found this after a lot of googling though), can anybody guide! Thanks!

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : Get value of parameter from file
sina123 am 04.02.2019 um 11:01 Uhr (1)
public void CreateFileNameParameter(KnowledgewareTypeLib.Parameters Params, string sfileName) { try { KnowledgewareTypeLib.StrParam Param = null; Param = Params.CreateString(selectedRule, sfileName); } catch (Exception ex) { logs.Info(ex.ToString()); } }

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 : 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 : 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 : 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 : 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

Anzeige:

Anzeige: (Infos zum Werbeplatz)

Ergebnisseiten :  1   2 

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