Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

Search results for query: *

  1. jpetach

    How to Fetch the Cue/Status Bar information of NX using NXOpen

    Hi Maddy02, No, not to my knowledge. The status line can vary based on the mouse pointer location in the graphics window and what is under it at the the time and the preselection sensitivity settings etc. (so even with the mouse at the same location (over the same object(s) the answer can...
  2. jpetach

    Increasing the curve to txt GRIP program point limit

    Line 36 also needs to be changes to output the larger numbers. The attached zip file (please change the extension) has the revised source and executable. --joehttps://files.engineering.com/getfile.aspx?folder=7d5a7196-bd12-4cc5-bf59-d82d3b376907&file=Pts_Along_Any_Curve_to_txt-file.rename_to_zip
  3. jpetach

    "PLEASE HELP!!!"

    Hi Kenja824, Please consider this tip Link to convert legacy .tbr toolbar files to .grb extension. And this tip Link for where to relocate the files to in the directory hierarchy for the NX UI customizations. To summarize, rename and relocate the .tbr file to .grb and place it in the...
  4. jpetach

    NX GRIP Print ENTITY data

    Hi Miike110, At the beginning of the GRIP subroutine/program add a declaration for an array of 3 numbers to accept the data from the startpoint (&spoint) information of entity "myEnitity". The array is named "N". Change the name if this causes conflicts. ENTITY/myEntity(5) Number/[highlight...
  5. jpetach

    Template part vs seed part

    Doc Center | Home > Teamcenter Integration for NX > System Setup/Administration > Server Setup/Administration > Installing/creating/modifying templates If memory serves, there are other expectations that do not apply to template parts. The item ID and Item name must match and must not contain...
  6. jpetach

    seed part issue

    Ehaviv, For the second journal to work the master part revision must already exist. Was a "save part" performed after the first journal(and before the second journal)? HTH, Joe
  7. jpetach

    seed part issue

    Ehaviv, (if the original question remains...) The creation of a non-master would need to be changed from your example encodedName = "@DB/" + partNumber + "/" + partRev to include the "specification" for file type and the dataset name (of the non-master). encodedName = "@DB/" + partNumber +...
  8. jpetach

    ug_convert_part utility

    Hi RamK, The command line utility "part_utility -managed_mode=yes" supports these units conversion options and limits changes to authenticated TC users without needing to export any data. -convert_units_to_mm -convert_units_to_in HTH, Joe part_utility -managed_mode=yes -help...
  9. jpetach

    Journal ListingWindow question

    Hello Ehaviv, It isn't clear (to me) if maintenance pack MP7 (or mp8 or mp9 or mp10) is installed in addition to the 11.0.2.7. maintenance release. There were listing window changes delivered in MP7. (Just making sure that this seven 11.0.2.[highlight #FCE94F]7[/highlight] is not being...
  10. jpetach

    NX Journal lock

    Hello Jurajkomacka, If the goal is to provide an NX journal without allowing the source (.vb) file to be read, the following command builds a dll binary file which is launched by "File-> Execute-> NXopen". Creating Class Library vbc /libpath:%UGII_ROOT_DIR%\managed /t:library /r:NXOpen.dll...
  11. jpetach

    UF_CLONE SetDefAssocFileCopy = True What task this function do

    Adding the unmanaged assembly to the import operation can infer the component parts for the import operation. You have to add the additional files to the import list that are intended to be non-masters and identify which master they will relate to and what relationship type to use (usually...
  12. jpetach

    UF_CLONE SetDefAssocFileCopy = True What task this function do

    If I understand the question correctly this may help. Here is the description of the associated files capability that the API is automating. Associated files Link And here is a description on the import behavior. Import Associated files Link In short, if you are importing file 1234.prt and...
  13. jpetach

    NX JOURNAL - UTD POSSIBLE?

    Hi Kenja824, The advice that Tomas offers is good - UTD has not been improved as NX gains new functionality - using Ribbon bar customization is a better long term solution. A possible interim strategy would be using a macro with UTD to launch the VB journal. HTH, Joe
  14. jpetach

    NX9 - Orient to Isometric and export Jpeg

    Hello Kenja824, NX journals have access to modeling and drafting functions without needing to switch applications. However, the journal code has to insure that the NX session is displaying the contents that would be displayed in the respective applications. So, for the purpose of exporting the...
  15. jpetach

    NX9 - Orient to Isometric and export Jpeg

    Hello Kenja824, My suspicion is that error is part specific. Does this occur for a newly created part (ideally using file-> New -> Blank)? The system defined "Isometric" view should not have any rotation and the line mentioned is not attempting to rotate the view orientation. -joe
  16. jpetach

    NX9 - Orient to Isometric and export Jpeg

    Hello Kenja824, The following should process only the Isometric view. Hope this helps, Joe For Each wpModelingView In workPart.ModelingViews [highlight #FCE94F]If wpModelingView.Name = "Isometric"[/highlight][highlight #D3D7CF][/highlight]...
  17. jpetach

    PDF batch

    Hello Sim77Son, Try removing the "'" comment at the beginning of lines 39 and 119. This will display the name of each part file in the NX listing window as the directory is processed which will help diagnose if the file is being processed or ignored. If the files are not listed in the NX...
  18. jpetach

    Keeping Operator Open at the End of a Journal

    Kenevil, Macros drive the NX user interface (UI). This means they can enter some of the dialog values and stop, allowing the user to perform adjustments, make selection(s), press Apply or Cancel. Journals operate at a lower level where the actual NX action is performed. So, either the journal...
  19. jpetach

    Assembly Creation using a Text File

    Hello Sdinesh134, In this particular case the corporate customer specific add-ons are intentionally making this NX menu option unavailable. Please accept my apology but I cannot in good conscience offer additional assistance to contravene corporate standards. You may want to consider contacting...
  20. jpetach

    Assembly Creation using a Text File

    Hello Sdinesh134, That sounds like the template part has been saved with "Enforce Piece Part" set to ON. Either use a different template part or edit and save the template part file after using "File->Utilities->Enforce Piece Part...", Uncheck "Enforce as Piece Part" Hope this helps, Joe
Back
Top