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 1392 - 1404, 1966 Gesamtergebnisse mit Suchbegriffen catia sec.

Direkter Link in ein Forum:

CATIA V4 Allgemein CATIA V4 Administration CATIA V4 SOLID CATIA V4 Flächen CATIA V4 CAM
CATIA V4 Kinematik CATIA V4 MAKROS CATIA V4 2D und Drawings CATIA V4 Datentransfer 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 V4 / Umstieg CATIA V4 - V5 CATIA V4 Prüftools
CATIA V5 FEM CATIA V5 ICEM Shape Design CATIA V6 CATIA V5 Composite

CATIA V5 Programmierung : Unterschiedliche Product definitionen
bgrittmann am 19.02.2018 um 11:49 Uhr (1)
ServusWas ist bei dir die BauteilBenennung?Beispiel:Code:Set MyPartDocument = Catia.Documents.Item("MyPart.CATpart")Set MyPart = MyPartDocument.PartSet MyPartProduct = MyPartDocument.ProductArbeitest du in VBA? Dann nutze bitte mal das Watch/Local-Fenster um die Struktur zu erforschen.GrußBernd------------------Warum einfach, wenn es auch kompliziert geht.

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : FileSelectionBox 3dmap
bgrittmann am 23.02.2018 um 17:26 Uhr (15)
ServusWarum verwendest du denn die FileSelectionBox beim speichern und erneuten öffnen?Falls der User den Pfad/Dateinamen beim speichern wqählen soll könntest du diesen doch zwischenspeichern und erneut beim öffnen nutzen. zB (ungetestet)Code:Dim sPathAddDocument as StringsPathAddDocument = CATIA.FileSelectionBox(makroname + " " + version + " - Bauteil1", "*.3dmap", CatFileSelectionModeSave)document1.SaveAs sPathAddDocumentsFileList(0) = sPathAddDocumentPP.AddComponentsFromFiles sFileList, "All"Um den Date ...

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : LS-OPT and CATIA
bgrittmann am 26.03.2018 um 11:57 Uhr (1)
HiHave you tried to record the manual change of these parameters with the macro recorder?You could use this recorded code to develop your specialized code.Regards,Bernd------------------Warum einfach, wenn es auch kompliziert geht.

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : LS-OPT and CATIA
bgrittmann am 26.03.2018 um 13:25 Uhr (1)
HiA code example for two of these parameters:Code:Sub CATMain()Dim partDocument1 As DocumentSet partDocument1 = CATIA.ActiveDocumentDim part1 As PartSet part1 = partDocument1.PartDim parameters1 As ParametersSet parameters1 = part1.ParametersDim TotalLenghtPara As ParameterSet TotalLenghtPara = parameters1.RootParameterSet.DirectParameters.Item("Total_Lenght")TotalLenghtPara.Value = 300Dim AnglePara As ParameterSet AnglePara = parameters1.RootParameterSet.DirectParameters.Item("Angle")AnglePara.Value = -10 ...

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : LS-OPT and CATIA
bgrittmann am 26.03.2018 um 13:55 Uhr (1)
HiPlease try to understand the code and not only copy code snippets in one file.My code was written as .CATScript. (maybe you should also use CASTScript)Also have a look on the documentation (V5Automation.chm in the Catia install folder).Regards,Bernd------------------Warum einfach, wenn es auch kompliziert geht.

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : LS-OPT and CATIA
bgrittmann am 27.03.2018 um 16:44 Uhr (1)
Hi SamOpening Catia per command and execute a macro: see for example hereRegards,Bernd------------------Warum einfach, wenn es auch kompliziert geht.

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : LS-OPT and CATIA
bgrittmann am 29.03.2018 um 14:49 Uhr (1)
HiTry Code:CATIA.DisplayFileAlerts = FalseRegards,Bernd------------------Warum einfach, wenn es auch kompliziert geht.

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : LS-OPT and CATIA
bgrittmann am 31.03.2018 um 15:05 Uhr (1)
HiHave you tried the additional parameter -batch (also described in the previous posted link)? Have you specified the environment? (-direnv, -env)According to your other opened thread: IMHO would be the best option to using only your Python script to handle the tasks in Catia (using COM-Interface). But I have no idea how that works in Python.Regards,Bernd------------------Warum einfach, wenn es auch kompliziert geht.

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : LS-OPT and CATIA
bgrittmann am 31.03.2018 um 15:53 Uhr (1)
Hi,Please post the complete command lines you tried an the results.Maybe the is a mistake in them.Have you used the correct parameters for environment an so one?BerndPS: Please use unique file names for the attachments, otherwise the files will be overwritten and other user cannot follow the discussion (also in the future)------------------Warum einfach, wenn es auch kompliziert geht.

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : Running CATScript with python
bgrittmann am 01.04.2018 um 14:58 Uhr (1)
HiHow do you want to execute the CATScript?If connecting to Catia works you could use the method ExecuteScript (see also V5Automation.chm)Regards,Bernd------------------Warum einfach, wenn es auch kompliziert geht.

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : Produkte Vergleichen Außengeometrie
bgrittmann am 10.04.2018 um 17:39 Uhr (1)
ServusAlso die FileSelectionBox liefert dir nur einen Pfad und speichert/lädt direkt nicht.Es müsst ungefähr so aussehen (ungetestet)Code:strPathForCgr = CATIA.FileSelectionBox("Speichern von Wrapping Datei", "*.cgr", CatFileSelectionModeSave)wrapping1.SaveAs (strPathForCgr)GrußBernd------------------Warum einfach, wenn es auch kompliziert geht.

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : Daten übermitteln von Catia - Excel - Catia
bgrittmann am 11.04.2018 um 15:41 Uhr (1)
ServusWillkommen im Forum. Bitte Systeminfo ausfüllen.Sicher dass Excel nicht gestartet wird? ggf geschieht dies im Hintergrund (Taskmanager beobachten)Falls du im VBA-Editor arbeitest kannst du ja auch das Makro schrittweise ausführen und den Objekten beim "arbeiten" im Watch/Local-Fenster zuschauen.GrußBerndPS: muss der "Umweg" über Excel sein? zB kannst du in eine Textdatei direkt schreiben------------------Warum einfach, wenn es auch kompliziert geht.

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : How to add syntax Normal Termination to the existing .CATScript?
bgrittmann am 15.04.2018 um 15:24 Uhr (1)
HiMy idea was to use the COM-Interface like win32com.client.Dispatch("CATIA.Application").Does this work on your PC?If not maybe you should use a workaround (log file, ...)Regards,Bernd------------------Warum einfach, wenn es auch kompliziert geht.

In das Form CATIA V5 Programmierung wechseln

Anzeige:

Anzeige: (Infos zum Werbeplatz)

Ergebnisseiten :  1 ...  95   96   97   98   99   100   101   102   103   104   105   106   107   108   109   110   111   112   113   114   115   116   117   118   119   120   ... mehr

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