Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by LWolf

  1. LWolf

    Catia CAA/VBA Automation API- Adding HybridBody as a child of UserSurface

    actually, my 3DX inserts ALL 6 faces (automatically) of the cube. I attached the text-note to the Volume Extrude
  2. LWolf

    3DEXPERIENCE - Catia on cloud.........

    you mean upload?...
  3. LWolf

    How to export to .stp files in code?

    there are the Utilities in 3DX Batch Management; "DataExchangePLMBatch": Batch App for data exchanges between DXF, IGES, STEP, Multi-CAD, ICEM formats and the 3DEXPERIENCE platform.
  4. LWolf

    CATIA V5 ASSEMBLY DESIGN CONSTRAINS

    stop shouting
  5. LWolf

    CATIA SKETCH GRAPHICS

    why are you using all caps?
  6. LWolf

    CATIA Macro to give Overall Dimensions to a View

    https://www.eng-tips.com/threads/creating-of-dimension-in-drawing-document.510661/
  7. LWolf

    CATIA _ AddNewDatums function

    in the documentation: "Creates datums from a multi-domain result feature, one datum is created by object domain. Note; Available only for a shape design feature as input ( not for datum feature )." it seems that sketch USED to be acceptable, now it is not... So I created a JOIN of the sketch...
  8. LWolf

    How to loop through already opened .CATDrawing files in catia v5 using vba

    Sub CATMain() Dim V As Integer Dim StrWindows As String Dim DrawingExists As Boolean DrawingExists = False Set windows2 = CATIA.Windows For V = 1 To windows2.Count StrWindows = windows2.item(V).name MsgBox windows2.item(V).Parent.name If InStr(StrWindows, "Drawing") Then...
  9. LWolf

    Open Drawing sheet and Renumbering

    Sooo... show us your progress; what are you struggling with? Have you searched the forum, the web? Pls. attach your code.
  10. LWolf

    CATPart from Product name

    this functionality exists in Assembly Design Workbench (Tools-Generate CATPart from Product) or in Infrastructure/Product Data Filtering (Product To Part)
  11. LWolf

    Creating Plane

    this code assumes you have already selected your AxisSystem. I retrieve all the info from this axis system (origo, axis coordinates) and create two lines that will span the plane. Sub CATMain() Dim partDocument1 As partDocument Set partDocument1 = CATIA.ActiveDocument Dim part1 As part Set...
  12. LWolf

    Axis system full path

    Hi Tiago, select the Axis System, and set part1.InWorkObject=sel.item(1).value Set CurrentHBody = part1.InWorkObject that will set the parent geo-set as "Define in Work Object" -- and from here you can navigate your way up to the top, right?...
  13. LWolf

    catscript errors

    You really need to post your code. Are you checking the instance? Because that IS a product. Or are you selecting the .catpart (it has only one cog-wheel as icon), one level below the instance.
  14. LWolf

    Macro to automise the insertion of rivet in a strucuture

    If your rivet holes are created with a pattern, you can re-use this same pattern in assembly; CATIA has this functionality in Assembly called "Reuse Pattern"

Part and Inventory Search

Back
Top