Informationen zum Forum CATIA V5 Programmierung:
Anzahl aktive Mitglieder: 2.316
Anzahl Beiträge: 31.709
Anzahl Themen: 6.257

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 - 11, 11 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 : makro in drafting recording
toyo83 am 15.02.2007 um 11:36 Uhr (0)
Hello im from poland and my german is not so good so my english im working now in germany in lindau and im starting to learn catia programming with VB. i have some basic quastions : i want to record a macro in a drafting, i have there a table with some informationns. i want to update those informations with a macro but when im starting to record a macro in drawing i have only a blank page with no code only sub CATmain() and nothing else. is there a way to record a macro in a drawing ?? reagrd tom

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : makro in drafting recording
toyo83 am 15.02.2007 um 13:29 Uhr (0)
Zitat:Original erstellt von Augustiner:Servas Macrorecorder doesn´t work in all Workbenches, sometimes Helps a restart of Catia.i did it several times but it dosent work but its there a pasibility to manipulate drawing varaibles with vba. i need some exaple code to go thru this

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : Drawing automation with vba or catscript
toyo83 am 27.02.2007 um 09:40 Uhr (0)
Hy im a beginner in catia programming and i have one big quiestion could any one send me some code examples in vba or catscript for drawing automation with( how to place text on a drawing, how to change its heigh etc) it would be very helpfull becouse i cant record makros on drawing and i have no examples. Thank Best regards ps This is my email: toyo83@gmail.com

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : Drawing automation with vba or catscript
toyo83 am 27.02.2007 um 10:52 Uhr (0)
Zitat:Original erstellt von Augustiner:If you need Code examples then watch the documention(Automation.chm) ,its in Directory where  CATIA is Installed,or use search in forum.You will find enough samples here .And no one will send you Code samples I am sure, even then they will post it here.thanks for yuor replay ok i will search in the catia help

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : Text insert
toyo83 am 01.03.2007 um 10:28 Uhr (0)
Hello i want to insert a text in a drawing im using this Code:Sub CATMain()Dim drawingDocument1 As DrawingDocumentSet drawingDocument1 = CATIA.ActiveDocumentDim drawingSheets1 As DrawingSheetsSet drawingSheets1 = drawingDocument1.SheetsDim drawingSheet1 As DrawingSheetSet drawingSheet1 = drawingSheets1.ActiveSheet Dim MyView As DrawingView Set MyView = MySheet.Views.ActiveView Dim MyText As DrawingText Set MyText = MyView.Texts.Add("ComplexText", 0#, 0#)End Subbut id dosent work, the vb editor says that i ...

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : Text insert
toyo83 am 01.03.2007 um 12:33 Uhr (0)
hy it works but i have other problem i want to loop thru all texts and if a name of te text field match i want to put there some data from my textbox on a userform. could somone help?? this is the code of the subCode:Sub txt(ByVal desk As String, ByVal id As String, ByVal mat As String, ByVal dat As String, ByVal nam As String, ByVal prod As String)Dim DrwDocument As DrawingDocumentSet DrwDocument = CATIA.ActiveDocumentDim DrwSheets As DrawingSheetsSet DrwSheets = DrwDocument.SheetsDim DrwSheet As DrawingS ...

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : part and drawing open with a macro
toyo83 am 07.03.2007 um 16:10 Uhr (0)
hy i want to open automaticly a drawing and a part with a macro with the start of a userform my code lokks like that:Code:Dim doc, doc1 As DocumentsSet doc1 = CATIA.DocumentsSet doc = CATIA.DocumentsDim path, path1 As Stringdoc = CATIA.Documents.Open("Z:dataINTERNESzk_zeichnungencarrier.CATPart")doc1 = CATIA.Documents.Open("Z:dataINTERNESzk_zeichnungenCarrier.CATDrawing")formatka.showbut it opens only the catpart and gives me an error: "tht object doesnt support this..." and that error is to that code : "f ...

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : Open file Box
toyo83 am 22.05.2007 um 14:21 Uhr (0)
Zitat:Original erstellt von YellowDevil:I hope its working!Sub CATMain()Dim FileFile=CATIA.FileSelectionBox("Filename", "*.catproduct", CATFileSelectionModeSave)CATIA.ActiveDocument.SaveAs FileEnd Subyes !!!but there is a error msg ByRef Argumnet, type mismatch and the compiler show the File as the bad argument

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : Open file Box
toyo83 am 22.05.2007 um 14:28 Uhr (0)
Zitat:Original erstellt von toyo83: [QUOTE]Original erstellt von YellowDevil:[i]I hope its working!Sub CATMain()Dim FileFile=CATIA.FileSelectionBox("Filename", "*.catproduct", CATFileSelectionModeSave)CATIA.ActiveDocument.SaveAs FileEnd Subyes !!!but there is a error msg ByRef Argumnet, type mismatch and the compiler show the File as the bad argument[/i][/QUOTE]Ok it works !!You forgot to put File in brackets Thanks and best REGARDS guys !!!!!![Diese Nachricht wurde von toyo83 am 22. Mai. 2007 editiert.]

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : VB with Catia
toyo83 am 18.06.2007 um 19:26 Uhr (0)
Hello!Im useing now VBA with Catia V5, but there is a quastion is it possible to use VB.net or VB with Catia to write a separate exe file that works with Catia ?? and do enybody has some tutorials or materials to learn that stuf.Best ragards Tom

In das Form CATIA V5 Programmierung wechseln
CATIA V5 Programmierung : Parametrisches Textfeld im Drawing per VB?
toyo83 am 03.08.2007 um 14:29 Uhr (0)
Das solte dir HelfenCode:Sub dt()Dim DrwDocument As DrawingDocumentSet DrwDocument = CATIA.ActiveDocumentDim DrwSheets As DrawingSheetsSet DrwSheets = DrwDocument.SheetsDim DrwSheet As DrawingSheetSet DrwSheet = DrwSheets.ActiveSheetDim drawingTexts1 As DrawingTextsDim drawingText1 As DrawingTextDim MyView As DrawingViewSet MyView = DrwSheet.Views.Item(2)Dim MyText As DrawingTextDim param As Stringparam = "DAS SOLTE DEIN PARAM SEIN !!"Set MyText = MyView.Texts.Add(param, 0#, 0#)End Sub

In das Form CATIA V5 Programmierung wechseln

Anzeige:

Anzeige: (Infos zum Werbeplatz)


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