Hi,
I'm trying to write a journal to fullfill the Date on a titleblock selected cell. So, the user selects first a cell, and running the journal, the selected cell is filled with the current Date.
My trouble is to get the Table instead of the TableSection.
By now this is my current code...
Hi,
I intend to make a journal that makes a new component containing all the bodies in Layer 1 from all components. (This is a simple aproximation of real thing)
Firstly I cycle all components in assembly, collecting for each component the bodies in layer 1 and creating a List (Of Body)...
Hi,
I'm trying to make a journal that exports the solid objects on layers 1 and 100 to a new file without parameters. I've finded this thread: Linkthat was very usefull.
My problem is that the resulting geometry on the new part is positionated relative to the original component (the owner of...
Hi,
I need to get the curves (splines) from a feature text that I've created with a textBuilder.
Recording a journal I get the next code:
Dim features2(0) As NXOpen.Features.Feature
Dim text1 As NXOpen.Features.Text = CType(displayPart.Features.FindObject("TEXT(25)"), NXOpen.Features.Text)...
Hi,
I'm suffering a strange behavior setting attributes.
I've made a journal that sets the attribute "PLIST_IGNORE_MEMBER" to selected components in an assembly.
If I use:
component.SetUserAttribute(attName, -1, attVal, Update.Option.Now)
the attribute is saved. But if I use...
Hi,
I've found several journals to coloring holes:
https://www.eng-tips.com/viewthread.cfm?qid=384927
https://nxjournaling.com/content/change-hole-color
These journals "detects" holes created by hole package and also distinguises diameters, but for "linked holes" only detects the...
Hi,
I am suffering from annoying translating behavior.
I need to export several closed profiles for import in a "wiring cutting application".
In NX, my curve profile is completely closed: I can to extrude, and the continuity G00 is perfect. If I export the profile in dxf, the "wiring cutting...
I have some parts that have some String attributes. I need to maintain the category and the name of these attributes, but the type should be Integer. With two of these attributes don't have problem (first I remove the attribute and then re-add it wih the correct type ), but there is one that...
Hi,
I'm writing a journal that indexes an assembly. The journal gets the levels of indexation and writes the results on the information window, but I can't write the level of each component into component attribute ("NIVEL_ESTRUCTURA") .
Can anyone help me? Thanks in advance...
Here is the...
Hi,
I want to write a journal that creates a NonAlignedMinimumBox and then gets the lenght of it's edges.
How to get the edgeLength when creating a NonAlignedMinimumBox BoundedBlock ?
On the NXOpen documentation says :
.CalculateBoxSize
Calculate box size and get directions, edge length...