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 209 - 221, 342 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 : Rechenfehler
joehz am 21.02.2016 um 19:39 Uhr (1)
Hi street,noch zwei Anmerkungen zum Array:Code: schema: r, t1, t2, f, g, Winkel, Winkel Dim m = Reihe 1 / E+F: übliche Beanspruchung {{0.4, 0.2, 0.1, 2, 1.1, 15, 0}, D 3 - 18 {0.8, 0.3, 0.2, 2.5, _2.3_, 15, 0}, D 18 - 80 soll:2.4 {1.2, 0.4, 0.3, 4, 3.4, 15, 0}, D 80 Reihe 1 / E+F: übliche Beanspruchung / anderer Winkel {0.4, 0.2, 0.1, 2, 1.1, 15, 8}, {0.8, 0.3, 0.2, 2.5, _2.3_, 15, 8}, soll: 2.4 {1.2, 0.4, 0.3, 4, 3.4, 15, 8}, Reihe 1 / G: übliche Beanspruch ...

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : Rechenfehler
joehz am 21.02.2016 um 20:27 Uhr (1)
ich bin noch nicht fertig!Warte noch 10 min.Tschau,Joe------------------Inoffizielle Catia Hilfeseite

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : Funktion Zusammenfügen
joehz am 15.03.2016 um 10:18 Uhr (15)
Hi chuk,Zitat:Makro aufnehmen hat nicht funktioniert, selbst wenn ich das Makro direkt wieder ablaufen lasse, funktioniert es nicht.bei mir funktioniert das wieder-ablaufen-lassen.Hast Du daran gedacht zuvor den Ausgangszustand wieder herzustellen?Tschau,JoePS: Das mitgeschnittene Makro verbindet zwei Linien mit einem Viertelkreis:Code:Sub CATMain()Dim partDocument1 As PartDocumentSet partDocument1 = CATIA.ActiveDocumentDim part1 As PartSet part1 = partDocument1.PartDim hybridShapeFactory1 As HybridShapeFa ...

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : Instanzname mit Partname im gesamten Produkt abgleichen
joehz am 18.03.2016 um 17:57 Uhr (1)
Kleine Korrektur noch. Die Do-Loop-Schleife kann entfallen.Also statt:Code:      Do        oinstance.Name = strPNum & "." & i        Umbenennen oProducts.Item(x).ReferenceProduct.Products, bFirstPass        Exit Do      LoopdiesesCode:        oinstance.Name = strPNum & "." & i        Umbenennen oProducts.Item(x).ReferenceProduct.Products, bFirstPassTschau,JoePS: das ganze lässt sich auch gut mit ProdSort kombinieren. Siehe hier:http://catia2.cad.de/index.php/de/downloads/skripts-applikationen/210-prodkt-so ...

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : FTA ausleiten
joehz am 29.03.2016 um 15:46 Uhr (1)
Hi Cathi,Hast Du ein Product geladen oder ein Part?Die Routine erwartet ein Product.Tsschau,Joe------------------Inoffizielle Catia Hilfeseite

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : FTA ausleiten
joehz am 29.03.2016 um 17:20 Uhr (1)
Hi Kathi.noch was: Setz vorher das Product in Design Mode(Edit/Representation/DesignMode oder RMB/Representations/DesignMode)Tschau,Joe------------------Inoffizielle Catia Hilfeseite

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : FTA ausleiten
joehz am 30.03.2016 um 19:12 Uhr (15)
Hi Cathi,kommst Du eigentlich händisch an die Annotations?Falls ja: Zeichne den Vorgang bitte mit dem MakroRekorder auf.Mal schauen, was der sagt.Tschau,Joe------------------Inoffizielle Catia Hilfeseite

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : FTA ausleiten
joehz am 30.03.2016 um 20:31 Uhr (1)
Hi Cathi,jetzt bin ich mit meinem Latein am Ende.Was mich wundert:Ich kenne die 3dxml als Anschauungsdateiformat.Wie kann es sein, dass Du auf die Art Daten zugeschickt bekommst?Tschau,Joe------------------Inoffizielle Catia Hilfeseite

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : Drawing Textfeld FrameType ändern
joehz am 31.03.2016 um 12:00 Uhr (1)
Hi InFlames,anstatt Code: For i = 1 To oSel.Count Set oText = oSel.Item(i).Value oText.FrameType = CatTextFrameType.catDiamond Set VisPropertySet = oSel.VisProperties VisPropertySet.SetRealColor 255, 0, 0, 0 Nextprobier bitteCode: For i = 1 To oSel.Count Set oText = oSel.Item(i).Value oText.FrameType = CatTextFrameType.catDiamond Next Set VisPropertySet = oSel.VisProperties VisPropertySet.SetRealColor 255, 0, 0, 0Tschau,Joe------------------Inoffizielle Catia Hilfeseite

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : Drawing Textfeld FrameType ändern
joehz am 01.04.2016 um 10:09 Uhr (1)
Hi InFlames,schau mal hier nach:http://catia2.cad.de/index.php/de/downloads/skripts-applikationen/244-dressdim-ein-bemassungsmakrooder hier:http://catia2.cad.de/index.php/de/downloads/skripts-applikationen/211-rahmen-um-massTschau,Joe------------------Inoffizielle Catia Hilfeseite

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : Makro catvba: Verzeichnis auslesen
joehz am 09.04.2016 um 10:29 Uhr (1)
Als Alternative:http://catia2.cad.de/index.php/de/tipps-tricks/programmierung/304-makro-start-verzeichnis-findenTschau,Joe------------------Inoffizielle Catia Hilfeseite

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : Punktwolke import
joehz am 14.04.2016 um 16:21 Uhr (1)
Hi Chuk,vielleicht hilft Dir das weiter:http://catia2.cad.de/index.php/de/downloads/skripts-applikationen/441-punkte-import-aus-cvs-dateiTschau,Joe------------------Inoffizielle Catia Hilfeseite

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : CATScript in ein VBA umwandeln
joehz am 19.04.2016 um 12:02 Uhr (1)
Hi 4ppu,hast Du das Script schon in ein VBA-Modul kopiert?Und laufen lassen?Und ...?Tschau,Joe------------------Inoffizielle Catia Hilfeseite

In das Form CATIA V5 Programmierung wechseln

Anzeige:

Anzeige: (Infos zum Werbeplatz)

Ergebnisseiten :  1 ...  4   5   6   7   8   9   10   11   12   13   14   15   16   17   18   19   20   21   22   23   24   25   26   27 

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