Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

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

Search results for query: *

  • Users: vitulaaak
  • Order by date
  1. vitulaaak

    sheet number

    I would probably be able to write a macro to do that. But I d rather have it as an annotation. The problem with the macro is, that you would have to run it everytime. Unless you could run it automaticaly...
  2. vitulaaak

    sheet number

    Thanks. Do you also have a solution for NX 3 and NX4 ? Vita
  3. vitulaaak

    sheet number

    I would like to create a followig note on my drawing: sheet x of y i would like x to be the number of current sheet and y the total number of sheets. Is there a way to create such annotation?
  4. vitulaaak

    weight of component

    I used this macro from mark to assign the part properties into drawing file... option strict off Imports System Imports NXOpen Imports NXOpen.Assemblies imports system.windows.forms Module NXJournal Dim thesession As Session = Session.GetSession() sub Main Dim thesession As Session =...
  5. vitulaaak

    journal

    thanks mark...please see the next question,if zou can help me...
  6. vitulaaak

    journal

    the problem is, that without the documentation i cant really do things i would like to... could you please explain the followings: dim c as component = comp.rootcomponent prototype = CTYPE(child.prototype,part) what exactly is rootcomponent and ctype thanks vit
  7. vitulaaak

    journal

    I have done this: Option Strict Off Imports System Imports NXOpen Imports NXOpen.Assemblies Module NXJournal Dim Session As Session = Session.GetSession() public part_name as string Sub Walk(c As Component, level As Integer) Dim children As Component() = c.GetChildren() Dim...
  8. vitulaaak

    journal

    to benson: you wrote exactly what i wrote....the only thing is, that i can get working journal for one drawing file, but when i change the part, it doesnt work... its because its recorded macro and hence it is pointing to one exact part...i would need a macro, that goes into first level...
  9. vitulaaak

    journal

    to Benson: this is something, what i know...the problem is, how would you get the part name to the drawing file? I have tried the macro to make the part work part, assign its name to variable and then make the drawing file work again and sign the variable as attribute...the only problem is...
  10. vitulaaak

    journal

    How would you do following: i have a part, and part drawing as separate file... how would you do a part name attribute of part drawing ? i would expect something like making the part work part, saving the name as variable, making the assembly work part, saving the variable as attribute... the...
  11. vitulaaak

    nx open .api documentation

    nobody knows?
  12. vitulaaak

    Journal (.NET) Remove Parameters Command

    that sounds better :o)
  13. vitulaaak

    Journal (.NET) Remove Parameters Command

    the problem is, that it comes back with part_name.length does not exist
  14. vitulaaak

    Journal (.NET) Remove Parameters Command

    do you have an idea how to extract parts of the string? for example: part_name = "xxx_name" part_number = extract(part_name,"_") ???
  15. vitulaaak

    Journal (.NET) Remove Parameters Command

    do you want to remove parameter of attribut???
  16. vitulaaak

    nx open .api documentation

    In the UG help I found this: NX Open for .NET API Reference as a resource, but I candt find it...
  17. vitulaaak

    nx open .api documentation

    Does anyone have an idea, where I can get nx open reference book or documentation for visual basic? Thanks
  18. vitulaaak

    Changing the length of a spring within an assembly?

    have you tried deformable part?and change the spring pitch?
  19. vitulaaak

    Expression help

    well, i just meant the syntax...if you have descending order 300.200.100, then it works and you dont have to use the number of brackets
  20. vitulaaak

    drawing borders

    jpetach that was exactly what i wanted...do you think, that if I use for example visual studio to edit, the intelisense would work?
Back
Top