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 TudorM

  1. TudorM

    How to export to .stp files in code?

    slow_rabbit did you found a way ?
  2. TudorM

    Catia V5/V6 Frame and Title Block CreateSpline

    Maybe force update the view?
  3. TudorM

    Catia V5/V6 Frame and Title Block CreateSpline

    Hi , i did not searched in documentation , but just saying , it is not easily to bring a picture with the logo ?
  4. TudorM

    How to Define Circle Edges for Points in CATIA VBA?

    why not selecting the cyl edges instead ?
  5. TudorM

    Catia create points using Excel data

    To remove "IF" : assume that excel it's allready opened or create one . To remove "while" , i presume that columns will always be X , Y, Z ? Dim i As Integer For i = 2 To rowsnum x = osheet.Cells(i, 1).Value y = osheet.Cells(i, 2).Value z = osheet.Cells(i, 3).Value Set opoint =...
  6. TudorM

    Catia create points using Excel data

    why do you need "j" and to count columns ?
  7. TudorM

    Catia create points using Excel data

    You dealed with so many codes , CAA and other stuff.Are you sure you can't solve this one ?
  8. TudorM

    catia libraries issue

    Thank you Eric!
  9. TudorM

    catia libraries issue

    The silence means the answer is there somewhere , or eveyone is on holiday ? [smile] For vs one i think the reference path will do the trick , but i got in another problem with accessing the v5 aplication , that one i think is not an easy fix . For integrated vba in v5 did not found yet any...
  10. TudorM

    catia libraries issue

    Hi Could someone point me please what is wrong with catia libaries , will explain a little more the problem i got below . So i have couple of CATIA versions installed on my machine : V5 ,3DX . I noticed that either in integrated V5 VBA or when using VS for automation if i have both 3dx and v5...
  11. TudorM

    Catia V5 to 3DX transition - Flexible components

    3dx users any suggestions ? No more V5 components for 3DX ?
  12. TudorM

    Catia V5 toolbars

    Sorry Lwolf your message was not on screen when i posted . I guess you was faster :)
  13. TudorM

    Catia V5 toolbars

    When the toolbar is vertical keep pressed left click on it + SHIFT, will become horizontal .
  14. TudorM

    Obtain Edges of Selected Face in C# / Makro

    That part with partbody is not necessary. For geoset you can add one random to use : HybridBody hybridBody1 = (HybridBody)hybridBodies1.Add();
  15. TudorM

    Obtain Edges of Selected Face in C# / Makro

    First time i made a code in C# but challenge accepted : { PartDocument partDocument1 = (PartDocument)catia.ActiveDocument; Document partDocument = (Document)partDocument1; Selection osel2 = (Selection)partDocument.Selection; string status2...

Part and Inventory Search

Back
Top